r232055 - ASTMatchers: Add an explicit dependency on libclangBasic.

Benjamin Kramer benny.kra at googlemail.com
Thu Mar 12 09:25:19 PDT 2015


Author: d0k
Date: Thu Mar 12 11:25:19 2015
New Revision: 232055

URL: http://llvm.org/viewvc/llvm-project?rev=232055&view=rev
Log:
ASTMatchers: Add an explicit dependency on libclangBasic.

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.

Modified:
    cfe/trunk/lib/ASTMatchers/CMakeLists.txt

Modified: cfe/trunk/lib/ASTMatchers/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/ASTMatchers/CMakeLists.txt?rev=232055&r1=232054&r2=232055&view=diff
==============================================================================
--- cfe/trunk/lib/ASTMatchers/CMakeLists.txt (original)
+++ cfe/trunk/lib/ASTMatchers/CMakeLists.txt Thu Mar 12 11:25:19 2015
@@ -8,4 +8,5 @@ add_clang_library(clangASTMatchers
 
   LINK_LIBS
   clangAST
+  clangBasic
   )





More information about the cfe-commits mailing list