Skip to content

Commit ef5adf4

Browse files
Merge tag '1.5.4'
2 parents de81f13 + be2b788 commit ef5adf4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

neo/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ if( D3_COMPILER_IS_GCC_OR_CLANG )
301301
add_definitions(-DMACOS_X=1)
302302

303303
if( cpu STREQUAL "x86_64" )
304-
add_compile_options( -arch x86_64 -mmacosx-version-min=10.9 )
305-
set( ldflags "${ldflags} -arch x86_64 -mmacosx-version-min=10.9" )
304+
add_compile_options( -arch x86_64 -mmacosx-version-min=10.7 )
305+
set( ldflags "${ldflags} -arch x86_64 -mmacosx-version-min=10.7" )
306306
elseif( cpu STREQUAL "arm64" )
307-
add_compile_options( -arch arm64 -mmacosx-version-min=11.0 )
308-
set( ldflags "${ldflags} -arch arm64 -mmacosx-version-min=11.0" )
307+
add_compile_options( -arch arm64 -mmacosx-version-min=10.7 )
308+
set( ldflags "${ldflags} -arch arm64 -mmacosx-version-min=10.7" )
309309
elseif( cpu STREQUAL "x86" )
310310
CHECK_CXX_COMPILER_FLAG( "-arch i386" cxx_has_arch_i386 )
311311
if( cxx_has_arch_i386 )

neo/framework/Licensee.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ If you have questions concerning this license or the applicable additional terms
3535
*/
3636

3737
#define GAME_NAME "dhewm 3" // appears in errors
38-
#define ENGINE_VERSION "dhewm3 1.5.4rc3" // printed in console, used for window title
38+
#define ENGINE_VERSION "dhewm3 1.5.4" // printed in console, used for window title
3939

4040
#ifdef ID_REPRODUCIBLE_BUILD
4141
// for reproducible builds we hardcode values that would otherwise come from __DATE__ and __TIME__
4242
// NOTE: remember to update esp. the date for (pre-) releases and RCs and the like
43-
#define ID__DATE__ "Jul 29 2024"
43+
#define ID__DATE__ "Aug 03 2024"
4444
#define ID__TIME__ "13:37:42"
4545

4646
#else // not reproducible build, use __DATE__ and __TIME__ macros

0 commit comments

Comments
 (0)