forked from OSchip/llvm-project
20 lines
366 B
CMake
20 lines
366 B
CMake
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangTidyReadabilityModule
|
|
BracesAroundStatementsCheck.cpp
|
|
ContainerSizeEmpty.cpp
|
|
ElseAfterReturnCheck.cpp
|
|
FunctionSize.cpp
|
|
NamespaceCommentCheck.cpp
|
|
ReadabilityTidyModule.cpp
|
|
RedundantSmartptrGet.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangLex
|
|
clangTidy
|
|
clangTooling
|
|
)
|