mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-26 01:48:30 -05:00
16 lines
306 B
CMake
16 lines
306 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(test_compile_headers_as_c11 C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
add_executable(test_compile_headers_as_c11
|
|
main.c)
|
|
|
|
target_compile_options(test_compile_headers_as_c11 PRIVATE
|
|
-Wall
|
|
-Wextra
|
|
-pedantic
|
|
-Werror)
|
|
|
|
wut_create_rpx(test_compile_headers_as_c11)
|