Fix up the CMake build for the new files added in r146960, they're
[oota-llvm.git] / lib / Target / CMakeLists.txt
1 add_llvm_library(LLVMTarget
2   Mangler.cpp
3   Target.cpp
4   TargetData.cpp
5   TargetELFWriterInfo.cpp
6   TargetInstrInfo.cpp
7   TargetIntrinsicInfo.cpp
8   TargetJITInfo.cpp
9   TargetLibraryInfo.cpp
10   TargetLoweringObjectFile.cpp
11   TargetMachine.cpp
12   TargetRegisterInfo.cpp
13   TargetSubtargetInfo.cpp
14   )
15
16 foreach(t ${LLVM_TARGETS_TO_BUILD})
17   message(STATUS "Targeting ${t}")
18   add_subdirectory(${t})
19 endforeach()