blob: e1c2ad59792e86124c180be4057c8f04505246d6 [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
Ilya Biryukov1ff7c322018-05-16 12:30:09 +000012 CommentTextTest.cpp
Johannes Altmanninger1a267692017-08-23 16:28:26 +000013 DataCollectionTest.cpp
Dmitri Gribenko309856a2012-08-20 23:39:06 +000014 DeclPrinterTest.cpp
Manuel Klimeka7328992013-06-03 13:51:33 +000015 DeclTest.cpp
James Dennett0492ef02014-03-14 17:44:10 +000016 EvaluateAsRValueTest.cpp
Richard Smith023d2ca2014-03-11 01:18:47 +000017 ExternalASTSourceTest.cpp
Richard Smith46dd5bb2014-05-30 22:16:51 +000018 NamedDeclPrinterTest.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
Shoaib Meenaid806af32017-12-05 21:49:56 +000024 PRIVATE
NAKAMURA Takumiac8517922013-12-10 12:40:37 +000025 clangAST
26 clangASTMatchers
27 clangBasic
28 clangFrontend
29 clangTooling
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000030 )