1set(LLVM_LINK_COMPONENTS support) 2 3add_subdirectory(Core) 4 5add_clang_library(clangTooling 6 ArgumentsAdjusters.cpp 7 CommonOptionsParser.cpp 8 CompilationDatabase.cpp 9 FileMatchTrie.cpp 10 FixIt.cpp 11 JSONCompilationDatabase.cpp 12 Refactoring.cpp 13 RefactoringCallbacks.cpp 14 Tooling.cpp 15 16 LINK_LIBS 17 clangAST 18 clangASTMatchers 19 clangBasic 20 clangDriver 21 clangFormat 22 clangFrontend 23 clangLex 24 clangRewrite 25 clangToolingCore 26 ) 27