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