wut/tests/test_compile_headers_as_cpp/CMakeLists.txt
2020-03-12 12:36:47 +11:00

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)