Compare commits

..

No commits in common. "630cc1fbbc285990ee8df0e11b672cc3d335b726" and "640a7d3cd05f6021ec2ae5a1389eb8cdde2527c2" have entirely different histories.

View file

@ -18,7 +18,7 @@ set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_CXX_EXTENSIONS OFF)
set(SAVETOOL_PROJECT_VERSION 1.5.0-pre) set(SAVETOOL_PROJECT_VERSION 1.4.1)
find_package(Corrade REQUIRED Main Containers Utility) find_package(Corrade REQUIRED Main Containers Utility)
find_package(Magnum REQUIRED GL Sdl2Application) find_package(Magnum REQUIRED GL Sdl2Application)
@ -188,12 +188,11 @@ add_executable(MassBuilderSaveTool WIN32
) )
if(CMAKE_BUILD_TYPE STREQUAL Debug) if(CMAKE_BUILD_TYPE STREQUAL Debug)
target_compile_definitions(Logger PRIVATE SAVETOOL_DEBUG_BUILD) add_compile_definitions(SAVETOOL_DEBUG_BUILD)
target_compile_definitions(MassBuilderSaveTool PRIVATE SAVETOOL_DEBUG_BUILD)
endif() endif()
target_compile_definitions(MassBuilderSaveTool PRIVATE add_compile_definitions(
SAVETOOL_VERSION="${SAVETOOL_PROJECT_VERSION}" SAVETOOL_VERSION="${SAVETOOL_PROJECT_VERSION}"
SAVETOOL_CODENAME="Friendly Valkyrie" SAVETOOL_CODENAME="Enigmatic Ellenier"
SUPPORTED_GAME_VERSION="0.9.x" SUPPORTED_GAME_VERSION="0.9.x"
) )