blob: a7008f3e7e092c92211154197c3b5947f5f33521 [file] [log] [blame]
NAKAMURA Takumiac8517922013-12-10 12:40:37 +00001set(LLVM_LINK_COMPONENTS
2 Support
3 )
4
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +00005add_clang_unittest(ASTTests
Manuel Klimekd4be4082013-02-28 13:21:39 +00006 ASTContextParentMapTest.cpp
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00007 ASTImporterTest.cpp
Samuel Benzaquenf226e972013-06-19 18:45:24 +00008 ASTTypeTraitsTest.cpp
David Blaikie67fc79f2013-07-13 19:23:35 +00009 ASTVectorTest.cpp
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000010 CommentLexer.cpp
Dmitri Gribenkoe3942ef2012-07-23 20:11:34 +000011 CommentParser.cpp
Dmitri Gribenko309856a2012-08-20 23:39:06 +000012 DeclPrinterTest.cpp
Manuel Klimeka7328992013-06-03 13:51:33 +000013 DeclTest.cpp
James Dennett0492ef02014-03-14 17:44:10 +000014 EvaluateAsRValueTest.cpp
Richard Smith023d2ca2014-03-11 01:18:47 +000015 ExternalASTSourceTest.cpp
Richard Smith46dd5bb2014-05-30 22:16:51 +000016 NamedDeclPrinterTest.cpp
Vassil Vassilev7baef4702016-07-08 08:33:56 +000017 PostOrderASTVisitor.cpp
Manuel Klimeke6de22d2012-11-06 17:31:40 +000018 SourceLocationTest.cpp
Dmitri Gribenko24bef9a2012-09-23 20:29:07 +000019 StmtPrinterTest.cpp
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000020 )
21
22target_link_libraries(ASTTests
NAKAMURA Takumiac8517922013-12-10 12:40:37 +000023 clangAST
24 clangASTMatchers
25 clangBasic
26 clangFrontend
27 clangTooling
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000028 )