mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:04:16 +01:00
15 lines
337 B
CMake
15 lines
337 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(test_compile_headers_as_cpp CXX)
|
|
include("${DEVKITPRO}/wut/share/wut.cmake" REQUIRED)
|
|
|
|
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)
|