1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_unittest(DynamicASTMatchersTests
6  VariantValueTest.cpp
7  ParserTest.cpp
8  RegistryTest.cpp)
9
10target_link_libraries(DynamicASTMatchersTests
11  clangAST
12  clangASTMatchers
13  clangDynamicASTMatchers
14  clangFrontend
15  clangTooling
16  )
17