[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / clang-include-fixer / CMakeLists.txt
blob5581d436f2fe49cff62c8152530bfb051047536c
1 set(LLVM_LINK_COMPONENTS
2   support
3   )
5 add_clang_library(clangIncludeFixer
6   IncludeFixer.cpp
7   IncludeFixerContext.cpp
8   InMemorySymbolIndex.cpp
9   FuzzySymbolIndex.cpp
10   SymbolIndexManager.cpp
11   YamlSymbolIndex.cpp
13   LINK_LIBS
14   findAllSymbols
16   DEPENDS
17   omp_gen
18   )
20 clang_target_link_libraries(clangIncludeFixer
21   PRIVATE
22   clangAST
23   clangBasic
24   clangFormat
25   clangFrontend
26   clangLex
27   clangParse
28   clangSema
29   clangSerialization
30   clangTooling
31   clangToolingCore
32   )
34 add_subdirectory(plugin)
35 add_subdirectory(tool)
36 add_subdirectory(find-all-symbols)