make scons build debug by default

This commit is contained in:
2024-11-27 10:35:44 -06:00
committed by Celtic Minstrel
parent df0c46d616
commit f3e83290cb

View File

@@ -8,7 +8,7 @@ opts = Variables(None, ARGUMENTS)
opts.Add(EnumVariable('OS', "Target platform", str(Platform()), ('darwin', 'win32', 'posix')))
opts.Add('toolset', "Toolset to pass to the SCons builder", 'default')
opts.Add(BoolVariable('debug', "Build with debug symbols and no optimization", False))
opts.Add(BoolVariable('debug', "Build with debug symbols and no optimization", True))
opts.Add(EnumVariable('bits', "Build for 32-bit or 64-bit architectures", '64', ('32', '64')))
# Partial build flags -- by default, all targets will be built,