summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-09-12 18:32:57 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-09-12 18:32:57 +0000
commit86e05af491ee3f45bd51236ccb831eddad7cc316 (patch)
treeb80e2afa6920a95041f0296f2f7e244d5e878d70 /lib
parent298c45e845e1743f86b060cd280e8729cd4ba468 (diff)
downloadllvm-86e05af491ee3f45bd51236ccb831eddad7cc316.tar.gz
llvm-86e05af491ee3f45bd51236ccb831eddad7cc316.tar.bz2
llvm-86e05af491ee3f45bd51236ccb831eddad7cc316.tar.xz
CMake: Fix MSVS build. Although I don't know why this didn't break other build systems...
This problem is unrelated to the recent dependency tracking change. It seems like noone noticed the problem because I don't think anyone compiles any target other than X86 on windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/MSP430/TargetInfo/CMakeLists.txt2
-rw-r--r--lib/Target/PIC16/TargetInfo/CMakeLists.txt2
-rw-r--r--lib/Target/XCore/TargetInfo/CMakeLists.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/MSP430/TargetInfo/CMakeLists.txt b/lib/Target/MSP430/TargetInfo/CMakeLists.txt
index 1d408d0cb5..2d1aa9d4e5 100644
--- a/lib/Target/MSP430/TargetInfo/CMakeLists.txt
+++ b/lib/Target/MSP430/TargetInfo/CMakeLists.txt
@@ -4,4 +4,4 @@ add_llvm_library(LLVMMSP430Info
MSP430TargetInfo.cpp
)
-add_dependencies(LLVMMSP430Info MSP430Table_gen)
+add_dependencies(LLVMMSP430Info MSP430CodeGenTable_gen)
diff --git a/lib/Target/PIC16/TargetInfo/CMakeLists.txt b/lib/Target/PIC16/TargetInfo/CMakeLists.txt
index bfc6ff4e8e..f9aa3bf2d9 100644
--- a/lib/Target/PIC16/TargetInfo/CMakeLists.txt
+++ b/lib/Target/PIC16/TargetInfo/CMakeLists.txt
@@ -4,4 +4,4 @@ add_llvm_library(LLVMPIC16Info
PIC16TargetInfo.cpp
)
-add_dependencies(LLVMPIC16Info PIC16Table_gen)
+add_dependencies(LLVMPIC16Info PIC16CodeGenTable_gen)
diff --git a/lib/Target/XCore/TargetInfo/CMakeLists.txt b/lib/Target/XCore/TargetInfo/CMakeLists.txt
index 0a568de162..c147b8a66b 100644
--- a/lib/Target/XCore/TargetInfo/CMakeLists.txt
+++ b/lib/Target/XCore/TargetInfo/CMakeLists.txt
@@ -4,4 +4,4 @@ add_llvm_library(LLVMXCoreInfo
XCoreTargetInfo.cpp
)
-add_dependencies(LLVMXCoreInfo XCoreTable_gen)
+add_dependencies(LLVMXCoreInfo XCoreCodeGenTable_gen)