From: Benjamin Kramer Date: Tue, 14 May 2013 12:41:50 +0000 (+0000) Subject: Link dynamic ast matchers with the ast matchers library. Unbreaks shared cmake build. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46a89351e10fb1e058e8b338c32f92cb999885fa;p=clang Link dynamic ast matchers with the ast matchers library. Unbreaks shared cmake build. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181783 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ASTMatchers/Dynamic/CMakeLists.txt b/lib/ASTMatchers/Dynamic/CMakeLists.txt index ba920a4f67..843341b297 100644 --- a/lib/ASTMatchers/Dynamic/CMakeLists.txt +++ b/lib/ASTMatchers/Dynamic/CMakeLists.txt @@ -10,3 +10,7 @@ add_clang_library(clangDynamicASTMatchers add_dependencies(clangDynamicASTMatchers clangASTMatchers ) + +target_link_libraries(clangDynamicASTMatchers + clangASTMatchers + )