summaryrefslogtreecommitdiff
path: root/clang/unittests/Introspection/CMakeLists.txt
blob: edc359ef4fcfdc160da34f5d06ed854ba6c765b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set(LLVM_LINK_COMPONENTS
  FrontendOpenMP
  Support
  )

add_clang_unittest(IntrospectionTests
  IntrospectionTest.cpp
  )

clang_target_link_libraries(IntrospectionTests
  PRIVATE
  clangAST
  clangASTMatchers
  clangBasic
  clangFrontend
  clangSerialization
  clangTooling
  )
target_link_libraries(IntrospectionTests
  PRIVATE
  LLVMTestingSupport
)