2013-11-08 08:08:23 +08:00
|
|
|
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
|
2013-12-10 09:41:10 +08:00
|
|
|
clangAST
|
2013-11-08 08:08:23 +08:00
|
|
|
clangASTMatchers
|
2015-03-13 11:47:43 +08:00
|
|
|
clangBasic
|
2014-07-14 13:01:53 +08:00
|
|
|
clangDynamicASTMatchers
|
2013-11-08 08:08:23 +08:00
|
|
|
clangQuery
|
|
|
|
clangTooling
|
|
|
|
)
|