wut/samples/helloworld/CMakeLists.txt

15 lines
369 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.2)
project(helloworld)
2018-05-23 00:08:13 +02:00
include("${WUT_ROOT}/share/wut.cmake" REQUIRED)
2018-05-23 00:08:13 +02:00
add_executable(helloworld main.cpp)
target_link_libraries(helloworld
2018-05-25 12:48:37 +02:00
whb
defaultheap
2018-05-23 00:08:13 +02:00
coreinit
proc_ui
sysapp)
wut_create_rpx(helloworld.rpx helloworld)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/helloworld.rpx DESTINATION "${CMAKE_INSTALL_PREFIX}")