hanchenye-llvm-project/clang-tools-extra/clang-query/CMakeLists.txt

18 lines
249 B
CMake

set(LLVM_LINK_COMPONENTS
Support
)
add_clang_library(clangQuery
Query.cpp
QueryParser.cpp
)
target_link_libraries(clangQuery
clangAST
clangASTMatchers
clangBasic
clangDynamicASTMatchers
clangFrontend
)
add_subdirectory(tool)