13 lines
226 B
CMake
13 lines
226 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)
|