Clarify use of debug option thanks to earlier report by triallax

This commit is contained in:
Chris Cannam
2024-04-26 17:46:24 +01:00
parent 5526b88b81
commit 50f0c0ce1c

View File

@@ -436,11 +436,11 @@ ladspa_symbol_args = []
lv2_symbol_args = []
vamp_symbol_args = []
if get_option('buildtype').startswith('release')
config_summary += { 'Build type': 'Release' }
feature_defines += ['-DNO_THREAD_CHECKS', '-DNO_TIMING', '-DNDEBUG']
if get_option('debug')
config_summary += { 'Debug': 'Enabled' }
else
config_summary += { 'Build type': 'Debug' }
config_summary += { 'Debug': 'Disabled' }
feature_defines += ['-DNO_THREAD_CHECKS', '-DNO_TIMING', '-DNDEBUG']
endif
if system == 'darwin'