From: Chandler Carruth Date: Fri, 9 Apr 2010 05:55:25 +0000 (+0000) Subject: Add a missing dependency to this library when building with CMake. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7b0138ffabb3372e7e67177f26f04f847ac69efc;p=oota-llvm.git Add a missing dependency to this library when building with CMake. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100852 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/CMakeLists.txt b/lib/CodeGen/AsmPrinter/CMakeLists.txt index afc482dd15b..ca8b8436c11 100644 --- a/lib/CodeGen/AsmPrinter/CMakeLists.txt +++ b/lib/CodeGen/AsmPrinter/CMakeLists.txt @@ -7,3 +7,5 @@ add_llvm_library(LLVMAsmPrinter DwarfException.cpp OcamlGCPrinter.cpp ) + +target_link_libraries (LLVMAsmPrinter LLVMMCParser)