workflows/premerge: Fix condition for macos job (#125237)
[llvm-project.git] / clang-tools-extra / clang-include-fixer / CMakeLists.txt
blob00f2f6976152cc89f533d3d071753771204c1360
1 set(LLVM_LINK_COMPONENTS
2   support
3   )
5 add_clang_library(clangIncludeFixer STATIC
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)