Game-Engine/CMakeLists.txt
2025-04-30 16:53:53 +02:00

11 lines
357 B
CMake

cmake_minimum_required(VERSION 3.25.1)
if (POLICY CMP0141)
cmake_policy(SET CMP0141 NEW)
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<IF:$<AND:$<C_COMPILER_ID:MSVC>,$<CXX_COMPILER_ID:MSVC>>,$<$<CONFIG:Debug,RelWithDebInfo>:EditAndContinue>,$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>>")
endif()
project ("engine")
add_subdirectory ("engine")