wut/samples/helloworld/CMakeLists.txt
James Benton 8af0ffe9c7 Move wut to using CMake instead of Makefiles.
The old makefile solution will still be around on branch "make".
2017-03-23 12:18:02 +00:00

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)