2017-03-23 12:17:00 +00:00
|
|
|
cmake_minimum_required(VERSION 3.2)
|
2018-05-25 17:23:11 +01:00
|
|
|
project(helloworld C)
|
2019-04-09 18:39:03 +10:00
|
|
|
include("${DEVKITPRO}/wut/share/wut.cmake" REQUIRED)
|
2017-03-23 12:17:00 +00:00
|
|
|
|
2018-05-25 17:23:11 +01:00
|
|
|
add_executable(helloworld
|
|
|
|
main.c)
|
|
|
|
|
2017-03-23 12:17:00 +00:00
|
|
|
target_link_libraries(helloworld
|
2018-05-25 11:48:37 +01:00
|
|
|
whb
|
2018-05-22 23:08:13 +01:00
|
|
|
coreinit
|
|
|
|
proc_ui
|
|
|
|
sysapp)
|
2018-05-25 17:23:11 +01:00
|
|
|
|
2018-05-22 23:08:13 +01:00
|
|
|
wut_create_rpx(helloworld.rpx helloworld)
|
|
|
|
|
2018-05-25 17:23:11 +01:00
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/helloworld.rpx"
|
|
|
|
DESTINATION "${CMAKE_INSTALL_PREFIX}")
|