mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 11:32:38 +01:00
a5d15a7a3a
Replaced by coreinit data exports.
18 lines
369 B
CMake
18 lines
369 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(helloworld C)
|
|
include("${WUT_ROOT}/share/wut.cmake" REQUIRED)
|
|
|
|
add_executable(helloworld
|
|
main.c)
|
|
|
|
target_link_libraries(helloworld
|
|
whb
|
|
coreinit
|
|
proc_ui
|
|
sysapp)
|
|
|
|
wut_create_rpx(helloworld.rpx helloworld)
|
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/helloworld.rpx"
|
|
DESTINATION "${CMAKE_INSTALL_PREFIX}")
|