forked from OSchip/llvm-project
22 lines
337 B
CMake
22 lines
337 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
support
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../clang-query
|
|
)
|
|
|
|
add_extra_unittest(ClangQueryTests
|
|
QueryEngineTest.cpp
|
|
QueryParserTest.cpp
|
|
)
|
|
|
|
target_link_libraries(ClangQueryTests
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangDynamicASTMatchers
|
|
clangQuery
|
|
clangTooling
|
|
)
|