38 lines · plain
1set(LLVM_LINK_COMPONENTS2 support3 )4 5add_clang_library(clangIncludeFixer STATIC6 IncludeFixer.cpp7 IncludeFixerContext.cpp8 InMemorySymbolIndex.cpp9 FuzzySymbolIndex.cpp10 SymbolIndexManager.cpp11 YamlSymbolIndex.cpp12 13 LINK_LIBS14 findAllSymbols15 16 DEPENDS17 omp_gen18 ClangDriverOptions19 )20 21clang_target_link_libraries(clangIncludeFixer22 PRIVATE23 clangAST24 clangBasic25 clangFormat26 clangFrontend27 clangLex28 clangParse29 clangSema30 clangSerialization31 clangTooling32 clangToolingCore33 )34 35add_subdirectory(plugin)36add_subdirectory(tool)37add_subdirectory(find-all-symbols)38