X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTarget%2FCMakeLists.txt;h=06a74d7208100dec74466d24d688f5937339d485;hb=487ecab8d41e70700ca27895127b99f955e31fd0;hp=9ca86139a3270a0685c55b9e93fb778578d5cf2f;hpb=f0a5ec09349ec831216b0d2e9f60cf346374bb21;p=oota-llvm.git diff --git a/lib/Target/CMakeLists.txt b/lib/Target/CMakeLists.txt index 9ca86139a32..06a74d72081 100644 --- a/lib/Target/CMakeLists.txt +++ b/lib/Target/CMakeLists.txt @@ -1,17 +1,17 @@ add_llvm_library(LLVMTarget - DarwinTargetAsmInfo.cpp - ELFTargetAsmInfo.cpp - SubtargetFeature.cpp Target.cpp - TargetAsmInfo.cpp - TargetData.cpp - TargetELFWriterInfo.cpp - TargetFrameInfo.cpp - TargetInstrInfo.cpp - TargetMachOWriterInfo.cpp + TargetIntrinsicInfo.cpp + TargetJITInfo.cpp + TargetLibraryInfo.cpp + TargetLoweringObjectFile.cpp TargetMachine.cpp - TargetRegisterInfo.cpp - TargetSubtarget.cpp + TargetMachineC.cpp + TargetSubtargetInfo.cpp ) -# TODO: Support other targets besides X86. See Makefile. +list(APPEND LLVM_COMMON_DEPENDS intrinsics_gen) + +foreach(t ${LLVM_TARGETS_TO_BUILD}) + message(STATUS "Targeting ${t}") + add_subdirectory(${t}) +endforeach()