From: Michael J. Spencer Date: Sun, 12 Sep 2010 18:32:57 +0000 (+0000) Subject: CMake: Fix MSVS build. Although I don't know why this didn't break other build systems... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=86e05af491ee3f45bd51236ccb831eddad7cc316;p=oota-llvm.git 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 --- diff --git a/lib/Target/MSP430/TargetInfo/CMakeLists.txt b/lib/Target/MSP430/TargetInfo/CMakeLists.txt index 1d408d0cb5b..2d1aa9d4e5e 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 bfc6ff4e8e2..f9aa3bf2d9f 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 0a568de1624..c147b8a66bc 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)