mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 22:39:26 +01:00
9 lines
264 B
CMake
9 lines
264 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(test_compile_headers_as_cpp CXX)
|
|
include("${DEVKITPRO}/wut/share/wut.cmake" REQUIRED)
|
|
|
|
add_executable(test_compile_headers_as_cpp
|
|
main.cpp)
|
|
|
|
wut_create_rpx(test_compile_headers_as_cpp.rpx test_compile_headers_as_cpp)
|