forked from OSchip/llvm-project
23 lines
354 B
CMake
23 lines
354 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
FrontendOpenMP
|
||
|
Support
|
||
|
)
|
||
|
|
||
|
add_clang_unittest(IntrospectionTests
|
||
|
IntrospectionTest.cpp
|
||
|
)
|
||
|
|
||
|
clang_target_link_libraries(IntrospectionTests
|
||
|
PRIVATE
|
||
|
clangAST
|
||
|
clangASTMatchers
|
||
|
clangTooling
|
||
|
clangBasic
|
||
|
clangSerialization
|
||
|
clangFrontend
|
||
|
)
|
||
|
target_link_libraries(IntrospectionTests
|
||
|
PRIVATE
|
||
|
LLVMTestingSupport
|
||
|
)
|