mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-26 01:48:30 -05:00
11 lines
231 B
CMake
11 lines
231 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(helloworld C)
|
|
|
|
add_executable(helloworld
|
|
main.c)
|
|
|
|
wut_create_rpx(helloworld)
|
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/helloworld.rpx"
|
|
DESTINATION "${CMAKE_INSTALL_PREFIX}")
|