brintos

brintos / llvm-project-archived public Read only

0
0
Text · 524 B · 0326798 Raw
31 lines · plain
1include_directories( ${CMAKE_CURRENT_BINARY_DIR}/../Checkers )2 3set(LLVM_LINK_COMPONENTS4  Support5  )6 7add_clang_library(clangStaticAnalyzerFrontend8  AnalysisConsumer.cpp9  AnalyzerHelpFlags.cpp10  CheckerRegistry.cpp11  CreateCheckerManager.cpp12  FrontendActions.cpp13  ModelConsumer.cpp14  ModelInjector.cpp15 16  LINK_LIBS17  clangAST18  clangASTMatchers19  clangAnalysis20  clangBasic21  clangCrossTU22  clangFrontend23  clangLex24  clangStaticAnalyzerCheckers25  clangStaticAnalyzerCore26 27  DEPENDS28  omp_gen29  ClangDriverOptions30  )31