1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

[AVR] Add missing CMake dependencies

llvm-svn: 269901
This commit is contained in:
Dylan McKay 2016-05-18 11:11:51 +00:00
parent df26c79f7c
commit ec3d224f78
2 changed files with 8 additions and 6 deletions

View File

@ -7,12 +7,12 @@ 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
)
AVRInstrInfo.cpp
AVRRegisterInfo.cpp
AVRSubtarget.cpp
AVRTargetMachine.cpp
AVRTargetObjectFile.cpp
)
add_dependencies(LLVMAVRCodeGen intrinsics_gen)

View File

@ -5,3 +5,5 @@ add_llvm_library(LLVMAVRInfo
AVRTargetInfo.cpp
)
add_dependencies(LLVMAVRInfo AVRCommonTableGen)