Home | History | Annotate | Download | only in Tooling
      1 set(LLVM_LINK_COMPONENTS support)
      2 
      3 add_clang_library(clangTooling
      4   ArgumentsAdjusters.cpp
      5   CommonOptionsParser.cpp
      6   CompilationDatabase.cpp
      7   FileMatchTrie.cpp
      8   JSONCompilationDatabase.cpp
      9   Refactoring.cpp
     10   RefactoringCallbacks.cpp
     11   Tooling.cpp
     12 
     13   LINK_LIBS
     14   clangAST
     15   clangASTMatchers
     16   clangBasic
     17   clangDriver
     18   clangFrontend
     19   clangLex
     20   clangRewriteCore
     21   )
     22