mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-24 23:46:56 -05: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)
|