X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTarget%2FCMakeLists.txt;h=5913a9c4ccdd2666579b279fe32c6bfeb6dcaef1;hb=5c6c128b8162ab23f6330f8b8b5e66494458ec65;hp=43ebdac528ca1caae6952dcfcce6522f1632bc0d;hpb=4db361395b762b1de6059827a6fabb1952373f98;p=oota-llvm.git diff --git a/lib/Target/CMakeLists.txt b/lib/Target/CMakeLists.txt index 43ebdac528c..5913a9c4ccd 100644 --- a/lib/Target/CMakeLists.txt +++ b/lib/Target/CMakeLists.txt @@ -1,15 +1,20 @@ add_llvm_library(LLVMTarget Mangler.cpp - SubtargetFeature.cpp Target.cpp - TargetAsmLexer.cpp TargetData.cpp TargetELFWriterInfo.cpp - TargetFrameInfo.cpp TargetInstrInfo.cpp TargetIntrinsicInfo.cpp + TargetJITInfo.cpp + TargetLibraryInfo.cpp TargetLoweringObjectFile.cpp TargetMachine.cpp + TargetMachineC.cpp TargetRegisterInfo.cpp - TargetSubtarget.cpp + TargetSubtargetInfo.cpp ) + +foreach(t ${LLVM_TARGETS_TO_BUILD}) + message(STATUS "Targeting ${t}") + add_subdirectory(${t}) +endforeach()