mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:51:53 +01:00
9 lines
158 B
CMake
9 lines
158 B
CMake
|
cmake_minimum_required(VERSION 3.2)
|
||
|
project(helloworld)
|
||
|
|
||
|
add_rpx(helloworld src/main.c)
|
||
|
target_link_libraries(helloworld
|
||
|
coreinit
|
||
|
proc_ui
|
||
|
sysapp)
|