2018-05-23 00:08:13 +02:00
|
|
|
cmake_minimum_required(VERSION 3.2)
|
|
|
|
|
2018-05-25 18:21:59 +02:00
|
|
|
macro(wut_enable_stdcpp target)
|
|
|
|
target_link_libraries(${target}
|
2018-05-26 19:25:36 +02:00
|
|
|
wutnewlib
|
|
|
|
stdc++)
|
2018-05-25 18:21:59 +02:00
|
|
|
|
|
|
|
set_target_properties(${target} PROPERTIES
|
2018-05-26 19:25:36 +02:00
|
|
|
COMPILE_FLAGS "-std=c++17"
|
|
|
|
LINK_FLAGS "-Wl,--whole-archive -lwutstdc++ -Wl,--no-whole-archive")
|
2018-05-25 18:21:59 +02:00
|
|
|
endmacro(wut_enable_stdcpp)
|
|
|
|
|
2018-05-23 00:08:13 +02:00
|
|
|
macro(wut_create_rpx target source)
|
2018-05-25 12:31:38 +02:00
|
|
|
target_link_libraries(${source}
|
|
|
|
wutnewlib
|
|
|
|
coreinit)
|
|
|
|
|
|
|
|
add_custom_target(${target} ALL
|
|
|
|
COMMAND ${WUT_ELF2RPL} ${source} ${target}
|
|
|
|
DEPENDS ${source}
|
|
|
|
COMMENT "Converting to RPX ${target}")
|
|
|
|
|
2018-05-23 00:08:13 +02:00
|
|
|
add_dependencies(${target} ${source})
|
|
|
|
endmacro(wut_create_rpx)
|