mirror of
https://github.com/wiiu-env/wut.git
synced 2025-02-10 16:58:56 +01:00
![James Benton](/assets/img/avatar_default.png)
These are to check there are no syntax errors in the headers and that all the CHECK_OFFSET and CHECK_SIZE macros are valid.
10 lines
306 B
CMake
10 lines
306 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(test_compile_headers_as_cpp CXX)
|
|
include("${WUT_ROOT}/share/wut.cmake" REQUIRED)
|
|
|
|
add_executable(test_compile_headers_as_cpp
|
|
main.cpp)
|
|
|
|
wut_enable_stdcpp(test_compile_headers_as_cpp)
|
|
wut_create_rpx(test_compile_headers_as_cpp.rpx test_compile_headers_as_cpp)
|