You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
854 B
43 lines
854 B
7 months ago
|
set(LLVM_LINK_COMPONENTS
|
||
|
support
|
||
|
FrontendOpenMP
|
||
|
)
|
||
|
|
||
|
add_clang_library(clangTidyCERTModule
|
||
|
CERTTidyModule.cpp
|
||
|
CommandProcessorCheck.cpp
|
||
|
DefaultOperatorNewAlignmentCheck.cpp
|
||
|
DontModifyStdNamespaceCheck.cpp
|
||
|
FloatLoopCounter.cpp
|
||
|
LimitedRandomnessCheck.cpp
|
||
|
MutatingCopyCheck.cpp
|
||
|
NonTrivialTypesLibcMemoryCallsCheck.cpp
|
||
|
PostfixOperatorCheck.cpp
|
||
|
ProperlySeededRandomGeneratorCheck.cpp
|
||
|
SetLongJmpCheck.cpp
|
||
|
StaticObjectExceptionCheck.cpp
|
||
|
StrToNumCheck.cpp
|
||
|
ThrownExceptionTypeCheck.cpp
|
||
|
VariadicFunctionDefCheck.cpp
|
||
|
|
||
|
LINK_LIBS
|
||
|
clangTidy
|
||
|
clangTidyBugproneModule
|
||
|
clangTidyGoogleModule
|
||
|
clangTidyMiscModule
|
||
|
clangTidyPerformanceModule
|
||
|
clangTidyReadabilityModule
|
||
|
clangTidyUtils
|
||
|
|
||
|
DEPENDS
|
||
|
omp_gen
|
||
|
)
|
||
|
|
||
|
clang_target_link_libraries(clangTidyCERTModule
|
||
|
PRIVATE
|
||
|
clangAST
|
||
|
clangASTMatchers
|
||
|
clangBasic
|
||
|
clangLex
|
||
|
)
|