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