forked from OSchip/llvm-project
20 lines
359 B
CMake
20 lines
359 B
CMake
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangTidyMiscModule
|
|
ArgumentCommentCheck.cpp
|
|
BoolPointerImplicitConversion.cpp
|
|
MiscTidyModule.cpp
|
|
RedundantSmartptrGet.cpp
|
|
SwappedArgumentsCheck.cpp
|
|
UndelegatedConstructor.cpp
|
|
UnusedRAII.cpp
|
|
UseOverride.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangLex
|
|
clangTidy
|
|
)
|