mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 17:29:38 +01:00
11 lines
281 B
CMake
11 lines
281 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(test_compile_headers_as_c11 C)
|
|
include("${WUT_ROOT}/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)
|