Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,10 @@ if compiler.get_argument_syntax()== 'gcc' # used for gcc compatible compilers
if debug_type == 'release'
preprocessor_flags += ['-DRELEASE_BUILD'] # enable minimal debug features
elif debug_type == 'minimal'
extra_args += ['-Og'] # debug-compatible optimizations
preprocessor_flags += ['-DMIN_DEBUG_BUILD', '-DDEBUGMODE'] # enable some debug features
elif debug_type == 'full'
extra_args += ['-Og'] # debug-compatible optimizations
preprocessor_flags += ['-DDEBUG_BUILD', '-DDEBUGMODE'] # enable all debug features; may slow down game
endif
else
Expand Down
Loading