forked from OSchip/llvm-project
25 lines
532 B
CMake
25 lines
532 B
CMake
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangTidyGoogleModule
|
|
AvoidCStyleCastsCheck.cpp
|
|
ExplicitConstructorCheck.cpp
|
|
ExplicitMakePairCheck.cpp
|
|
GoogleTidyModule.cpp
|
|
IntegerTypesCheck.cpp
|
|
MemsetZeroLengthCheck.cpp
|
|
NamedParameterCheck.cpp
|
|
OverloadedUnaryAndCheck.cpp
|
|
StringReferenceMemberCheck.cpp
|
|
TodoCommentCheck.cpp
|
|
UnnamedNamespaceInHeaderCheck.cpp
|
|
UsingNamespaceDirectiveCheck.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangLex
|
|
clangTidy
|
|
clangTidyReadabilityModule
|
|
)
|