forked from OSchip/llvm-project
19 lines
305 B
CMake
19 lines
305 B
CMake
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangDynamicASTMatchers
|
|
Diagnostics.cpp
|
|
VariantValue.cpp
|
|
Parser.cpp
|
|
Registry.cpp
|
|
)
|
|
|
|
add_dependencies(clangDynamicASTMatchers
|
|
clangASTMatchers
|
|
)
|
|
|
|
target_link_libraries(clangDynamicASTMatchers
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
)
|