llvm-project/clang/unittests/Introspection/CMakeLists.txt

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
)