1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/lib/Target/AVR/CMakeLists.txt

21 lines
530 B
CMake
Raw Normal View History

set(LLVM_TARGET_DEFINITIONS AVR.td)
tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
tablegen(LLVM AVRGenCallingConv.inc -gen-callingconv)
tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget)
add_public_tablegen_target(AVRCommonTableGen)
add_llvm_target(AVRCodeGen
AVRTargetMachine.cpp
AVRTargetObjectFile.cpp
AVRSubtarget.cpp
AVRInstrInfo.cpp
AVRRegisterInfo.cpp
)
add_dependencies(LLVMAVRCodeGen intrinsics_gen)
add_subdirectory(TargetInfo)