Clang Project

clang_source_code/unittests/AST/CMakeLists.txt
1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5if (MSVC)
6  set_source_files_properties(ASTImporterTest.cpp PROPERTIES COMPILE_FLAGS /bigobj)
7endif()
8
9add_clang_unittest(ASTTests
10  ASTContextParentMapTest.cpp
11  ASTImporterTest.cpp
12  ASTTypeTraitsTest.cpp
13  ASTVectorTest.cpp
14  CommentLexer.cpp
15  CommentParser.cpp
16  CommentTextTest.cpp
17  DataCollectionTest.cpp
18  DeclPrinterTest.cpp
19  DeclTest.cpp
20  EvaluateAsRValueTest.cpp
21  ExternalASTSourceTest.cpp
22  Language.cpp
23  NamedDeclPrinterTest.cpp
24  OMPStructuredBlockTest.cpp
25  SourceLocationTest.cpp
26  StmtPrinterTest.cpp
27  StructuralEquivalenceTest.cpp
28  )
29
30target_link_libraries(ASTTests
31  PRIVATE
32  clangAST
33  clangASTMatchers
34  clangBasic
35  clangFrontend
36  clangSerialization
37  clangTooling
38  )
39