Mercurial > hg > CbC > CbC_llvm
comparison clang-tools-extra/clang-include-fixer/CMakeLists.txt @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | 2e18cbf3894f |
comparison
equal
deleted
inserted
replaced
147:c2174574ed3a | 150:1d019706d866 |
---|---|
1 set(LLVM_LINK_COMPONENTS | |
2 support | |
3 ) | |
4 | |
5 add_clang_library(clangIncludeFixer | |
6 IncludeFixer.cpp | |
7 IncludeFixerContext.cpp | |
8 InMemorySymbolIndex.cpp | |
9 FuzzySymbolIndex.cpp | |
10 SymbolIndexManager.cpp | |
11 YamlSymbolIndex.cpp | |
12 | |
13 LINK_LIBS | |
14 clangAST | |
15 clangBasic | |
16 clangFormat | |
17 clangFrontend | |
18 clangLex | |
19 clangParse | |
20 clangSema | |
21 clangSerialization | |
22 clangTooling | |
23 clangToolingCore | |
24 findAllSymbols | |
25 ) | |
26 | |
27 add_subdirectory(plugin) | |
28 add_subdirectory(tool) | |
29 add_subdirectory(find-all-symbols) |