mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 03:32:34 +01:00
12 lines
304 B
CMake
12 lines
304 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(helloworld_cpp CXX)
|
|
include("${DEVKITPRO}/wut/share/wut.cmake" REQUIRED)
|
|
|
|
add_executable(helloworld_cpp
|
|
main.cpp)
|
|
|
|
wut_create_rpx(helloworld_cpp)
|
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/helloworld_cpp.rpx"
|
|
DESTINATION "${CMAKE_INSTALL_PREFIX}")
|