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

20 lines
366 B
CMake

set(LLVM_LINK_COMPONENTS support)
add_clang_library(clangTidyReadabilityModule
BracesAroundStatementsCheck.cpp
ContainerSizeEmpty.cpp
ElseAfterReturnCheck.cpp
FunctionSize.cpp
NamespaceCommentCheck.cpp
ReadabilityTidyModule.cpp
RedundantSmartptrGet.cpp
LINK_LIBS
clangAST
clangASTMatchers
clangBasic
clangLex
clangTidy
clangTooling
)