File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -301,11 +301,11 @@ if( D3_COMPILER_IS_GCC_OR_CLANG )
301
301
add_definitions (-DMACOS_X=1 )
302
302
303
303
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 " )
306
306
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 " )
309
309
elseif ( cpu STREQUAL "x86" )
310
310
CHECK_CXX_COMPILER_FLAG ( "-arch i386" cxx_has_arch_i386 )
311
311
if ( cxx_has_arch_i386 )
Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ If you have questions concerning this license or the applicable additional terms
35
35
*/
36
36
37
37
#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
39
39
40
40
#ifdef ID_REPRODUCIBLE_BUILD
41
41
// for reproducible builds we hardcode values that would otherwise come from __DATE__ and __TIME__
42
42
// 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"
44
44
#define ID__TIME__ "13:37:42"
45
45
46
46
#else // not reproducible build, use __DATE__ and __TIME__ macros
You can’t perform that action at this time.
0 commit comments