Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « clang-apply-replacements « clang-tools-extra - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b84787ba00d999e98198905ccb217d1285f0ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set(LLVM_LINK_COMPONENTS
  Support
  )

add_clang_library(clangApplyReplacements
  lib/Tooling/ApplyReplacements.cpp
  )
target_link_libraries(clangApplyReplacements
  clangBasic
  clangRewriteCore
  clangTooling
  )

include_directories(
  ${CMAKE_CURRENT_SOURCE_DIR}
  include
  )
add_subdirectory(tool)