reman3/CMakeLists.txt

16 lines
334 B
CMake

cmake_minimum_required(VERSION 3.26.4)
project(reman3)
set(GAME_DATA_DIR ${CMAKE_CURRENT_SOURCE_DIR}/game)
add_subdirectory(game_re)
option(BUILD_TOOLING "Build the ghidra tooling" ON)
if(BUILD_TOOLING)
add_subdirectory(tooling)
endif()
# Use highest possible C standard
set_target_properties(game_re PROPERTIES C_STANDARD 23)