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