wut/samples/cmake/helloworld/CMakeLists.txt

12 lines
284 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.2)
2018-05-25 17:23:11 +01:00
project(helloworld C)
include("${DEVKITPRO}/wut/share/wut.cmake" REQUIRED)
2018-05-25 17:23:11 +01:00
add_executable(helloworld
main.c)
wut_create_rpx(helloworld)
2018-05-22 23:08:13 +01:00
2018-05-25 17:23:11 +01:00
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/helloworld.rpx"
DESTINATION "${CMAKE_INSTALL_PREFIX}")