blob: c416e5b996b4245d901bfd529a565b3ff5af42ea [file] [log] [blame]
NAKAMURA Takumiac8517922013-12-10 12:40:37 +00001set(LLVM_LINK_COMPONENTS
2 Support
3 )
4
Simon Pilgrima6e58882018-12-17 15:14:08 +00005if (MSVC)
6 set_source_files_properties(ASTImporterTest.cpp PROPERTIES COMPILE_FLAGS /bigobj)
7endif()
8
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +00009add_clang_unittest(ASTTests
Manuel Klimekd4be4082013-02-28 13:21:39 +000010 ASTContextParentMapTest.cpp
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +000011 ASTImporterTest.cpp
Samuel Benzaquenf226e972013-06-19 18:45:24 +000012 ASTTypeTraitsTest.cpp
David Blaikie67fc79f2013-07-13 19:23:35 +000013 ASTVectorTest.cpp
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000014 CommentLexer.cpp
Dmitri Gribenkoe3942ef2012-07-23 20:11:34 +000015 CommentParser.cpp
Ilya Biryukov1ff7c322018-05-16 12:30:09 +000016 CommentTextTest.cpp
Johannes Altmanninger1a267692017-08-23 16:28:26 +000017 DataCollectionTest.cpp
Dmitri Gribenko309856a2012-08-20 23:39:06 +000018 DeclPrinterTest.cpp
Manuel Klimeka7328992013-06-03 13:51:33 +000019 DeclTest.cpp
James Dennett0492ef02014-03-14 17:44:10 +000020 EvaluateAsRValueTest.cpp
Richard Smith023d2ca2014-03-11 01:18:47 +000021 ExternalASTSourceTest.cpp
Gabor Marton1f667532018-05-24 08:41:07 +000022 Language.cpp
Richard Smith46dd5bb2014-05-30 22:16:51 +000023 NamedDeclPrinterTest.cpp
Manuel Klimeke6de22d2012-11-06 17:31:40 +000024 SourceLocationTest.cpp
Dmitri Gribenko24bef9a2012-09-23 20:29:07 +000025 StmtPrinterTest.cpp
Gabor Marton1f667532018-05-24 08:41:07 +000026 StructuralEquivalenceTest.cpp
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000027 )
28
29target_link_libraries(ASTTests
Shoaib Meenaid806af32017-12-05 21:49:56 +000030 PRIVATE
NAKAMURA Takumiac8517922013-12-10 12:40:37 +000031 clangAST
32 clangASTMatchers
33 clangBasic
34 clangFrontend
Fangrui Song53133272018-12-12 08:02:18 +000035 clangSerialization
NAKAMURA Takumiac8517922013-12-10 12:40:37 +000036 clangTooling
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000037 )