
In a static build the dependency is picked up implictly, but not in a shared library build. This is needed for the new ObjC matchers that reference Selector. llvm-svn: 232055
13 lines
185 B
CMake
13 lines
185 B
CMake
add_subdirectory(Dynamic)
|
|
|
|
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangASTMatchers
|
|
ASTMatchFinder.cpp
|
|
ASTMatchersInternal.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangBasic
|
|
)
|