blob: 4eaf33956f3b3e66a84b389f8f8aa704deccec4a [file] [log] [blame]
Chad Rosier1a5d4212012-08-09 17:17:01 +00001set(LLVM_LINK_COMPONENTS
2 ${LLVM_TARGETS_TO_BUILD}
3 asmparser
4 support
5 mc
6 )
7
Chandler Carruth0c750ec2012-06-21 09:51:42 +00008add_clang_unittest(ToolingTests
Richard Smithbc9e5582012-06-24 23:56:26 +00009 CommentHandlerTest.cpp
Chandler Carruth0c750ec2012-06-21 09:51:42 +000010 CompilationDatabaseTest.cpp
11 ToolingTest.cpp
12 RecursiveASTVisitorTest.cpp
13 RefactoringTest.cpp
14 RewriterTest.cpp
Daniel Jasperd5c66dd2012-07-17 08:03:01 +000015 RefactoringCallbacksTest.cpp
Chandler Carruth0c750ec2012-06-21 09:51:42 +000016 )
17
18target_link_libraries(ToolingTests
19 clangAST
Chandler Carruth0c750ec2012-06-21 09:51:42 +000020 clangTooling
21 clangRewrite
22 )