wut/share/wut.cmake
2018-05-25 11:31:44 +01:00

15 lines
365 B
CMake

cmake_minimum_required(VERSION 3.2)
macro(wut_create_rpx target source)
target_link_libraries(${source}
wutnewlib
coreinit)
add_custom_target(${target} ALL
COMMAND ${WUT_ELF2RPL} ${source} ${target}
DEPENDS ${source}
COMMENT "Converting to RPX ${target}")
add_dependencies(${target} ${source})
endmacro(wut_create_rpx)