40 строки
711 B
CMake
40 строки
711 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_library(clangTidy
|
|
ClangTidy.cpp
|
|
ClangTidyModule.cpp
|
|
ClangTidyDiagnosticConsumer.cpp
|
|
ClangTidyOptions.cpp
|
|
|
|
DEPENDS
|
|
ClangSACheckers
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangFrontend
|
|
clangLex
|
|
clangRewrite
|
|
clangSema
|
|
clangStaticAnalyzerCore
|
|
clangStaticAnalyzerFrontend
|
|
clangTooling
|
|
clangToolingCore
|
|
)
|
|
|
|
add_subdirectory(tool)
|
|
add_subdirectory(plugin)
|
|
add_subdirectory(boost)
|
|
add_subdirectory(cert)
|
|
add_subdirectory(llvm)
|
|
add_subdirectory(cppcoreguidelines)
|
|
add_subdirectory(google)
|
|
add_subdirectory(misc)
|
|
add_subdirectory(modernize)
|
|
add_subdirectory(performance)
|
|
add_subdirectory(readability)
|
|
add_subdirectory(utils)
|