[Github] Label lldb-dap PRs (#125139)
[llvm-project.git] / clang / lib / Tooling / CMakeLists.txt
blobfc1f1f9f9d367e740076f4ec0c85e5f4b0e4da97
1 set(LLVM_LINK_COMPONENTS
2   Option
3   FrontendOpenMP
4   Support
5   TargetParser
6   )
8 add_subdirectory(Core)
9 add_subdirectory(Inclusions)
10 add_subdirectory(Refactoring)
11 add_subdirectory(ASTDiff)
12 add_subdirectory(Syntax)
13 add_subdirectory(DependencyScanning)
14 add_subdirectory(Transformer)
16 add_clang_library(clangTooling
17   AllTUsExecution.cpp
18   ArgumentsAdjusters.cpp
19   CommonOptionsParser.cpp
20   CompilationDatabase.cpp
21   Execution.cpp
22   ExpandResponseFilesCompilationDatabase.cpp
23   FileMatchTrie.cpp
24   FixIt.cpp
25   GuessTargetAndModeCompilationDatabase.cpp
26   InterpolatingCompilationDatabase.cpp
27   JSONCompilationDatabase.cpp
28   LocateToolCompilationDatabase.cpp
29   Refactoring.cpp
30   RefactoringCallbacks.cpp
31   StandaloneExecution.cpp
32   Tooling.cpp
34   DEPENDS
35   ClangDriverOptions
36   omp_gen
38   LINK_LIBS
39   clangAST
40   clangASTMatchers
41   clangBasic
42   clangDriver
43   clangFormat
44   clangFrontend
45   clangLex
46   clangRewrite
47   clangSerialization
48   clangToolingCore
49   ${LLVM_PTHREAD_LIB}
50   )