mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-21 17:34:47 -05:00
14 lines
284 B
CMake
14 lines
284 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(test_compile_headers_as_cpp CXX)
|
|
|
|
add_executable(test_compile_headers_as_cpp
|
|
main.cpp)
|
|
|
|
target_compile_options(test_compile_headers_as_cpp PRIVATE
|
|
-Wall
|
|
-Wextra
|
|
-pedantic
|
|
-Werror)
|
|
|
|
wut_create_rpx(test_compile_headers_as_cpp)
|