summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-09-12 03:47:31 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-09-12 03:47:31 +0000
commitd4b8333d625e9c4989f8966cb1b7f69bbef6993e (patch)
treef01932e23e70fc12c040d234883354e9f6674801 /lib
parente1b834515b07ea20ede924c7562317b9ebc69a46 (diff)
downloadllvm-d4b8333d625e9c4989f8966cb1b7f69bbef6993e.tar.gz
llvm-d4b8333d625e9c4989f8966cb1b7f69bbef6993e.tar.bz2
llvm-d4b8333d625e9c4989f8966cb1b7f69bbef6993e.tar.xz
CMake: Fix mingw32 build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/PIC16/AsmPrinter/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/PIC16/AsmPrinter/CMakeLists.txt b/lib/Target/PIC16/AsmPrinter/CMakeLists.txt
index d36bb8eb4a..32f4bc4052 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)