From: Michael J. Spencer Date: Sun, 12 Sep 2010 03:47:31 +0000 (+0000) Subject: CMake: Fix mingw32 build. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d4b8333d625e9c4989f8966cb1b7f69bbef6993e;p=oota-llvm.git CMake: Fix mingw32 build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113712 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PIC16/AsmPrinter/CMakeLists.txt b/lib/Target/PIC16/AsmPrinter/CMakeLists.txt index d36bb8eb4a5..32f4bc4052d 100644 --- a/lib/Target/PIC16/AsmPrinter/CMakeLists.txt +++ b/lib/Target/PIC16/AsmPrinter/CMakeLists.txt @@ -6,4 +6,9 @@ include_directories( add_llvm_library(LLVMPIC16AsmPrinter PIC16AsmPrinter.cpp ) + +target_link_libraries(LLVMPIC16AsmPrinter + LLVMPIC16CodeGen + ) + add_dependencies(LLVMPIC16AsmPrinter PIC16CodeGenTable_gen)