You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
459 B
29 lines
459 B
7 months ago
|
set(LLVM_LINK_COMPONENTS
|
||
|
FrontendOpenMP
|
||
|
Support
|
||
|
)
|
||
|
|
||
|
include_directories(
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/../../clang-query
|
||
|
)
|
||
|
|
||
|
add_extra_unittest(ClangQueryTests
|
||
|
QueryEngineTest.cpp
|
||
|
QueryParserTest.cpp
|
||
|
)
|
||
|
|
||
|
clang_target_link_libraries(ClangQueryTests
|
||
|
PRIVATE
|
||
|
clangAST
|
||
|
clangASTMatchers
|
||
|
clangBasic
|
||
|
clangDynamicASTMatchers
|
||
|
clangFrontend
|
||
|
clangSerialization
|
||
|
clangTooling
|
||
|
)
|
||
|
target_link_libraries(ClangQueryTests
|
||
|
PRIVATE
|
||
|
clangQuery
|
||
|
)
|