wut/share/wut.cmake

11 lines
287 B
CMake
Raw Normal View History

2018-05-22 23:08:13 +01:00
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)