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

19 lines
324 B
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS support)
add_clang_library(clangTidyModernizeModule
LoopConvertCheck.cpp
LoopConvertUtils.cpp
ModernizeTidyModule.cpp
PassByValueCheck.cpp
UseNullptrCheck.cpp
LINK_LIBS
clangAST
clangASTMatchers
clangBasic
clangLex
clangTidy
clangTidyReadabilityModule
clangTidyUtils
)