Files
Destrum/CMakeLists.txt
2026-01-20 00:13:54 +01:00

25 lines
525 B
CMake

cmake_minimum_required(VERSION 3.31)
project(Destrum)
set(CMAKE_CXX_STANDARD 20)
if (MSVC)
# Disable Just My Code debugging
add_compile_options(/JMC-)
endif()
add_subdirectory(destrum)
add_subdirectory(lightkeeper)
add_subdirectory(TheChef)
add_custom_target(CleanupAssets)
add_dependencies(CleanupAssets
_internal_clean_game_assets
_internal_clean_engine_assets
)
add_custom_target(CookAssets)
add_dependencies(CookAssets
_internal_cook_game_assets
_internal_cook_engine_assets
)