wut/samples/cmake/my_first_rpl/CMakeLists.txt

13 lines
342 B
CMake
Raw Normal View History

2018-05-30 21:56:29 +01:00
cmake_minimum_required(VERSION 3.2)
project(my_first_rpl C)
include("${DEVKITPRO}/wut/share/wut.cmake" REQUIRED)
2018-05-30 21:56:29 +01:00
add_executable(my_first_rpl
my_first_rpl.c)
2019-11-20 12:45:17 +00:00
wut_add_exports(my_first_rpl exports.def)
wut_create_rpl(my_first_rpl)
2018-05-30 21:56:29 +01:00
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/my_first_rpl.rpl"
DESTINATION "${CMAKE_INSTALL_PREFIX}")