aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PIC16
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
commitd5fe582a0f6f2743bb252bd198b9de8d29e69f2b (patch)
treef01932e23e70fc12c040d234883354e9f6674801 /lib/Target/PIC16
parent6f257f5310249a7c4b218a5e497219010fc3a0ec (diff)
downloadexternal_llvm-d5fe582a0f6f2743bb252bd198b9de8d29e69f2b.zip
external_llvm-d5fe582a0f6f2743bb252bd198b9de8d29e69f2b.tar.gz
external_llvm-d5fe582a0f6f2743bb252bd198b9de8d29e69f2b.tar.bz2
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/Target/PIC16')
-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 d36bb8e..32f4bc4 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)