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

22 lines
341 B
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS
Support
)
add_clang_library(clangTidy
ClangTidy.cpp
ClangTidyModule.cpp
)
target_link_libraries(clangTidy
clangAST
clangASTMatchers
clangBasic
clangFrontend
clangRewriteCore
clangStaticAnalyzerFrontend
clangTooling
)
add_subdirectory(tool)
add_subdirectory(llvm)
add_subdirectory(google)