forked from OSchip/llvm-project
41 lines
642 B
CMake
41 lines
642 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
FrontendOpenMP
|
|
Support
|
|
)
|
|
|
|
add_clang_library(clangTidyUtils
|
|
Aliasing.cpp
|
|
ASTUtils.cpp
|
|
DeclRefExprUtils.cpp
|
|
ExceptionAnalyzer.cpp
|
|
ExprSequence.cpp
|
|
FileExtensionsUtils.cpp
|
|
FixItHintUtils.cpp
|
|
HeaderGuard.cpp
|
|
IncludeInserter.cpp
|
|
IncludeSorter.cpp
|
|
LexerUtils.cpp
|
|
NamespaceAliaser.cpp
|
|
OptionsUtils.cpp
|
|
RenamerClangTidyCheck.cpp
|
|
TransformerClangTidyCheck.cpp
|
|
TypeTraits.cpp
|
|
UsingInserter.cpp
|
|
|
|
LINK_LIBS
|
|
clangTidy
|
|
|
|
DEPENDS
|
|
omp_gen
|
|
)
|
|
|
|
clang_target_link_libraries(clangTidyUtils
|
|
PRIVATE
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangLex
|
|
clangSema
|
|
clangTransformer
|
|
)
|