Mercurial > hg > CbC > CbC_llvm
annotate clang-tools-extra/clang-apply-replacements/CMakeLists.txt @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | 2e18cbf3894f |
rev | line source |
---|---|
150 | 1 set(LLVM_LINK_COMPONENTS |
2 Support | |
3 ) | |
4 | |
5 add_clang_library(clangApplyReplacements | |
6 lib/Tooling/ApplyReplacements.cpp | |
7 | |
8 LINK_LIBS | |
9 clangAST | |
10 clangBasic | |
11 clangRewrite | |
12 clangToolingCore | |
13 clangToolingRefactoring | |
14 ) | |
15 | |
16 include_directories( | |
17 ${CMAKE_CURRENT_SOURCE_DIR} | |
18 include | |
19 ) | |
20 add_subdirectory(tool) |