Home | History | Annotate | Download | only in Frontend
      1 include_directories( ${CMAKE_CURRENT_BINARY_DIR}/../Checkers )
      2 
      3 set(LLVM_LINK_COMPONENTS
      4   Support
      5   )
      6 
      7 add_clang_library(clangStaticAnalyzerFrontend
      8   AnalysisConsumer.cpp
      9   CheckerRegistration.cpp
     10   FrontendActions.cpp
     11 
     12   LINK_LIBS
     13   clangAST
     14   clangAnalysis
     15   clangBasic
     16   clangFrontend
     17   clangStaticAnalyzerCheckers
     18   clangStaticAnalyzerCore
     19   )
     20