mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:22:38 +01:00
8af0ffe9c7
The old makefile solution will still be around on branch "make".
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)
|