wut/samples/helloworld/CMakeLists.txt
James Benton fc10605172 Rewrite!
2018-05-23 09:47:28 +01:00

13 lines
347 B
CMake

cmake_minimum_required(VERSION 3.2)
project(helloworld)
include("${WUT_ROOT}/share/wut.cmake" REQUIRED)
add_executable(helloworld main.cpp)
target_link_libraries(helloworld
coreinit
proc_ui
sysapp)
wut_create_rpx(helloworld.rpx helloworld)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/helloworld.rpx DESTINATION "${CMAKE_INSTALL_PREFIX}")