1set(LLVM_LINK_COMPONENTS 2 Support 3 ) 4 5add_clang_unittest(ASTTests 6 ASTContextParentMapTest.cpp 7 ASTImporterTest.cpp 8 ASTTypeTraitsTest.cpp 9 ASTVectorTest.cpp 10 CommentLexer.cpp 11 CommentParser.cpp 12 DeclPrinterTest.cpp 13 DeclTest.cpp 14 EvaluateAsRValueTest.cpp 15 ExternalASTSourceTest.cpp 16 NamedDeclPrinterTest.cpp 17 PostOrderASTVisitor.cpp 18 SourceLocationTest.cpp 19 StmtPrinterTest.cpp 20 ) 21 22target_link_libraries(ASTTests 23 clangAST 24 clangASTMatchers 25 clangBasic 26 clangFrontend 27 clangTooling 28 ) 29