150
|
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)
|