hanchenye-llvm-project/clang-tools-extra/clang-tidy/CMakeLists.txt

20 lines
329 B
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS
Support
)
add_clang_library(clangTidy
ClangTidy.cpp
ClangTidyModule.cpp
)
target_link_libraries(clangTidy
clangTooling
clangBasic
clangRewriteFrontend
clangStaticAnalyzerFrontend
clangStaticAnalyzerCheckers
)
add_subdirectory(tool)
add_subdirectory(llvm)
add_subdirectory(google)