Add a new interface to allow IR-level passes to access codegen-specific information.
[oota-llvm.git] / lib / Target / CMakeLists.txt
1 add_llvm_library(LLVMTarget
2   Mangler.cpp
3   Target.cpp
4   TargetELFWriterInfo.cpp
5   TargetInstrInfo.cpp
6   TargetIntrinsicInfo.cpp
7   TargetJITInfo.cpp
8   TargetLibraryInfo.cpp
9   TargetLoweringObjectFile.cpp
10   TargetMachine.cpp
11   TargetMachineC.cpp
12   TargetRegisterInfo.cpp
13   TargetSubtargetInfo.cpp
14   TargetTransformImpl.cpp
15   )
16
17 foreach(t ${LLVM_TARGETS_TO_BUILD})
18   message(STATUS "Targeting ${t}")
19   add_subdirectory(${t})
20 endforeach()