blob: 45dfa7a97247f6c8edbe87d95ba02e16227d60cb [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
Johannes Altmanninger1a267692017-08-23 16:28:26 +000012 DataCollectionTest.cpp
Dmitri Gribenko309856a2012-08-20 23:39:06 +000013 DeclPrinterTest.cpp
Manuel Klimeka7328992013-06-03 13:51:33 +000014 DeclTest.cpp
James Dennett0492ef02014-03-14 17:44:10 +000015 EvaluateAsRValueTest.cpp
Richard Smith023d2ca2014-03-11 01:18:47 +000016 ExternalASTSourceTest.cpp
Richard Smith46dd5bb2014-05-30 22:16:51 +000017 NamedDeclPrinterTest.cpp
Vassil Vassilev7baef4702016-07-08 08:33:56 +000018 PostOrderASTVisitor.cpp
Manuel Klimeke6de22d2012-11-06 17:31:40 +000019 SourceLocationTest.cpp
Dmitri Gribenko24bef9a2012-09-23 20:29:07 +000020 StmtPrinterTest.cpp
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000021 )
22
23target_link_libraries(ASTTests
NAKAMURA Takumiac8517922013-12-10 12:40:37 +000024 clangAST
25 clangASTMatchers
26 clangBasic
27 clangFrontend
28 clangTooling
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000029 )