wut/samples/pong/CMakeLists.txt
James Benton 8af0ffe9c7 Move wut to using CMake instead of Makefiles.
The old makefile solution will still be around on branch "make".
2017-03-23 12:18:02 +00:00

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)