mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 17:43:57 +00:00
be4fbcaa44
Summary: The new test is now in the right directory with the other ASTVisitor tests and uses now the provided TestVisitor framework. Subscribers: hintonda, v.g.vassilev, klimek, cfe-commits, mgorny Differential Revision: https://reviews.llvm.org/D37557 llvm-svn: 323310
30 lines
518 B
CMake
30 lines
518 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_unittest(ASTTests
|
|
ASTContextParentMapTest.cpp
|
|
ASTImporterTest.cpp
|
|
ASTTypeTraitsTest.cpp
|
|
ASTVectorTest.cpp
|
|
CommentLexer.cpp
|
|
CommentParser.cpp
|
|
DataCollectionTest.cpp
|
|
DeclPrinterTest.cpp
|
|
DeclTest.cpp
|
|
EvaluateAsRValueTest.cpp
|
|
ExternalASTSourceTest.cpp
|
|
NamedDeclPrinterTest.cpp
|
|
SourceLocationTest.cpp
|
|
StmtPrinterTest.cpp
|
|
)
|
|
|
|
target_link_libraries(ASTTests
|
|
PRIVATE
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangFrontend
|
|
clangTooling
|
|
)
|