mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-27 20:35:12 -05:00
11 lines
251 B
CMake
11 lines
251 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(helloworld_cpp CXX)
|
|
|
|
add_executable(helloworld_cpp
|
|
main.cpp)
|
|
|
|
wut_create_rpx(helloworld_cpp)
|
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/helloworld_cpp.rpx"
|
|
DESTINATION "${CMAKE_INSTALL_PREFIX}")
|