mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-23 23:31:13 +01:00
11 lines
287 B
CMake
11 lines
287 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
|
|
macro(wut_create_rpx target source)
|
|
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)
|