mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:42:38 +01:00
8af0ffe9c7
The old makefile solution will still be around on branch "make".
14 lines
283 B
CMake
14 lines
283 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(pong)
|
|
|
|
include($ENV{WUT_ROOT}/cmake/wut-toolchain.cmake)
|
|
|
|
file(GLOB_RECURSE SOURCE_FILES *.c)
|
|
file(GLOB_RECURSE HEADER_FILES *.h)
|
|
|
|
add_rpx(pong ${SOURCE_FILES} ${HEADER_FILES})
|
|
target_link_libraries(pong
|
|
coreinit
|
|
proc_ui
|
|
vpad)
|