11 lines
286 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.2)
project(test_compile_headers_as_c11 C)
2019-11-20 17:23:42 +00:00
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.rpx test_compile_headers_as_c11)