21 lines
427 B
CMake
21 lines
427 B
CMake
|
add_llvm_library(LLVMTarget
|
||
|
Mangler.cpp
|
||
|
Target.cpp
|
||
|
TargetData.cpp
|
||
|
TargetELFWriterInfo.cpp
|
||
|
TargetInstrInfo.cpp
|
||
|
TargetIntrinsicInfo.cpp
|
||
|
TargetJITInfo.cpp
|
||
|
TargetLibraryInfo.cpp
|
||
|
TargetLoweringObjectFile.cpp
|
||
|
TargetMachine.cpp
|
||
|
TargetMachineC.cpp
|
||
|
TargetRegisterInfo.cpp
|
||
|
TargetSubtargetInfo.cpp
|
||
|
)
|
||
|
|
||
|
foreach(t ${LLVM_TARGETS_TO_BUILD})
|
||
|
message(STATUS "Targeting ${t}")
|
||
|
add_subdirectory(${t})
|
||
|
endforeach()
|