Merge pull request #386 from silverhadch/patch-1

Be aggressive over Memory Violations at Runtime
This commit is contained in:
Tropical
2026-04-02 14:06:17 -05:00
committed by GitHub
+2 -2
View File
@@ -6,7 +6,7 @@ project(
default_options: [ default_options: [
'cpp_std=c++23', 'cpp_std=c++23',
'warning_level=0', 'warning_level=0',
'buildtype=debug', # for now 'buildtype=debugoptimized', # for now
'unity=on', # merge source files per target 'unity=on', # merge source files per target
'unity_size=8', # TODO: mess around with this 'unity_size=8', # TODO: mess around with this
'b_pch=true', # precompiled headers 'b_pch=true', # precompiled headers
@@ -24,6 +24,7 @@ global_cpp_defs = [
'-D_EXTENDED_ACHIEVEMENTS', '-D_EXTENDED_ACHIEVEMENTS',
'-D_DEBUG_MENUS_ENABLED', '-D_DEBUG_MENUS_ENABLED',
'-D_DEBUG', '-D_DEBUG',
'-D_FORTIFY_SOURCE=2',
'-DDEBUG', '-DDEBUG',
] ]
@@ -86,4 +87,3 @@ subdir('targets/platform')
subdir('targets/resources') subdir('targets/resources')
subdir('targets/minecraft') subdir('targets/minecraft')
subdir('targets/app') subdir('targets/app')