Bump version to 19.1.0 (final)
[llvm-project.git] / clang-tools-extra / clang-include-fixer / CMakeLists.txt
blob94afdcc3c67b6ecc6b8fe562eb0f1aabcb69af37
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   ClangDriverOptions
19   )
21 clang_target_link_libraries(clangIncludeFixer
22   PRIVATE
23   clangAST
24   clangBasic
25   clangFormat
26   clangFrontend
27   clangLex
28   clangParse
29   clangSema
30   clangSerialization
31   clangTooling
32   clangToolingCore
33   )
35 add_subdirectory(plugin)
36 add_subdirectory(tool)
37 add_subdirectory(find-all-symbols)