mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 18:19:24 +01:00
11 lines
254 B
CMake
11 lines
254 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(test_compile_headers_as_c11 C)
|
|
include("${DEVKITPRO}/wut/share/wut.cmake" REQUIRED)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
add_executable(test_compile_headers_as_c11
|
|
main.c)
|
|
|
|
wut_create_rpx(test_compile_headers_as_c11)
|