]> granicus.if.org Git - clang/commitdiff
ASTMatchers: Add an explicit dependency on libclangBasic.
authorBenjamin Kramer <benny.kra@googlemail.com>
Thu, 12 Mar 2015 16:25:19 +0000 (16:25 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Thu, 12 Mar 2015 16:25:19 +0000 (16:25 +0000)
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.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@232055 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ASTMatchers/CMakeLists.txt

index 8a8e8c36569f9aafcdcae4c284852145077a0268..b49528ede2272c20408ab190687530602031e09f 100644 (file)
@@ -8,4 +8,5 @@ add_clang_library(clangASTMatchers
 
   LINK_LIBS
   clangAST
+  clangBasic
   )