25 lines
525 B
CMake
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
|
|
) |