diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-02-03 12:52:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 12:52:41 +0100 |
commit | 468d75bf6b5d1b0bc6aaf2afe62c71278e118bc5 (patch) | |
tree | 3d3aadcee87a2d483f66fb4f1ab961a335c20dd1 /platform/windows/detect.py | |
parent | 3a3af0279b1ed7c3b40136cdd7db1f54e09b88e2 (diff) | |
parent | db26871210fc53f2e36e24f985eea8f344d402f8 (diff) |
Merge pull request #45679 from akien-mga/scons-production
SCons: Add `production=yes` option to use production defaults
Diffstat (limited to 'platform/windows/detect.py')
-rw-r--r-- | platform/windows/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index 5216fca2ca..a675a2302f 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -64,7 +64,7 @@ def get_opts(): # XP support dropped after EOL due to missing API for IPv6 and other issues # Vista support dropped after EOL due to GH-10243 ("target_win_version", "Targeted Windows version, >= 0x0601 (Windows 7)", "0x0601"), - EnumVariable("debug_symbols", "Add debugging symbols to release/release_debug builds", "yes", ("yes", "no")), + BoolVariable("debug_symbols", "Add debugging symbols to release/release_debug builds", True), EnumVariable("windows_subsystem", "Windows subsystem", "default", ("default", "console", "gui")), BoolVariable("separate_debug_symbols", "Create a separate file containing debugging symbols", False), ("msvc_version", "MSVC version to use. Ignored if VCINSTALLDIR is set in shell env.", None), |