NAKAMURA Takumi | ac851792 | 2013-12-10 12:40:37 +0000 | [diff] [blame] | 1 | set(LLVM_LINK_COMPONENTS |
2 | Support | ||||
3 | ) | ||||
4 | |||||
Simon Pilgrim | a6e5888 | 2018-12-17 15:14:08 +0000 | [diff] [blame] | 5 | if (MSVC) |
6 | set_source_files_properties(ASTImporterTest.cpp PROPERTIES COMPILE_FLAGS /bigobj) | ||||
7 | endif() | ||||
8 | |||||
Dmitri Gribenko | 5188c4b | 2012-06-26 20:39:18 +0000 | [diff] [blame] | 9 | add_clang_unittest(ASTTests |
Manuel Klimek | d4be408 | 2013-02-28 13:21:39 +0000 | [diff] [blame] | 10 | ASTContextParentMapTest.cpp |
Artem Dergachev | 4e7c6fd | 2016-04-14 11:51:27 +0000 | [diff] [blame] | 11 | ASTImporterTest.cpp |
Samuel Benzaquen | f226e97 | 2013-06-19 18:45:24 +0000 | [diff] [blame] | 12 | ASTTypeTraitsTest.cpp |
David Blaikie | 67fc79f | 2013-07-13 19:23:35 +0000 | [diff] [blame] | 13 | ASTVectorTest.cpp |
Dmitri Gribenko | 5188c4b | 2012-06-26 20:39:18 +0000 | [diff] [blame] | 14 | CommentLexer.cpp |
Dmitri Gribenko | e3942ef | 2012-07-23 20:11:34 +0000 | [diff] [blame] | 15 | CommentParser.cpp |
Ilya Biryukov | 1ff7c32 | 2018-05-16 12:30:09 +0000 | [diff] [blame] | 16 | CommentTextTest.cpp |
Johannes Altmanninger | 1a26769 | 2017-08-23 16:28:26 +0000 | [diff] [blame] | 17 | DataCollectionTest.cpp |
Dmitri Gribenko | 309856a | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 18 | DeclPrinterTest.cpp |
Manuel Klimek | a732899 | 2013-06-03 13:51:33 +0000 | [diff] [blame] | 19 | DeclTest.cpp |
James Dennett | 0492ef0 | 2014-03-14 17:44:10 +0000 | [diff] [blame] | 20 | EvaluateAsRValueTest.cpp |
Richard Smith | 023d2ca | 2014-03-11 01:18:47 +0000 | [diff] [blame] | 21 | ExternalASTSourceTest.cpp |
Gabor Marton | 1f66753 | 2018-05-24 08:41:07 +0000 | [diff] [blame] | 22 | Language.cpp |
Richard Smith | 46dd5bb | 2014-05-30 22:16:51 +0000 | [diff] [blame] | 23 | NamedDeclPrinterTest.cpp |
Manuel Klimek | e6de22d | 2012-11-06 17:31:40 +0000 | [diff] [blame] | 24 | SourceLocationTest.cpp |
Dmitri Gribenko | 24bef9a | 2012-09-23 20:29:07 +0000 | [diff] [blame] | 25 | StmtPrinterTest.cpp |
Gabor Marton | 1f66753 | 2018-05-24 08:41:07 +0000 | [diff] [blame] | 26 | StructuralEquivalenceTest.cpp |
Dmitri Gribenko | 5188c4b | 2012-06-26 20:39:18 +0000 | [diff] [blame] | 27 | ) |
28 | |||||
29 | target_link_libraries(ASTTests | ||||
Shoaib Meenai | d806af3 | 2017-12-05 21:49:56 +0000 | [diff] [blame] | 30 | PRIVATE |
NAKAMURA Takumi | ac851792 | 2013-12-10 12:40:37 +0000 | [diff] [blame] | 31 | clangAST |
32 | clangASTMatchers | ||||
33 | clangBasic | ||||
34 | clangFrontend | ||||
Fangrui Song | 5313327 | 2018-12-12 08:02:18 +0000 | [diff] [blame] | 35 | clangSerialization |
NAKAMURA Takumi | ac851792 | 2013-12-10 12:40:37 +0000 | [diff] [blame] | 36 | clangTooling |
Dmitri Gribenko | 5188c4b | 2012-06-26 20:39:18 +0000 | [diff] [blame] | 37 | ) |