aboutsummaryrefslogtreecommitdiff
path: root/platform/windows/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde2018-06-07 22:23:50 +0200
committerGitHub2018-06-07 22:23:50 +0200
commit2db0c615dd71788f35db03854919a8cad384c4d0 (patch)
treedc11502b8486e8e9e2dbc80a7764d558a042eb84 /platform/windows/detect.py
parent3d5aabe7fcaa46fe36afe3c418756710d6a97363 (diff)
parentd54b5da9406ffaad12d63b5895e53f293e834c34 (diff)
downloadgodot-2db0c615dd71788f35db03854919a8cad384c4d0.tar.gz
godot-2db0c615dd71788f35db03854919a8cad384c4d0.tar.zst
godot-2db0c615dd71788f35db03854919a8cad384c4d0.zip
Diffstat (limited to 'platform/windows/detect.py')
-rw-r--r--platform/windows/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py
index 6d559520d..05806d2fe 100644
--- a/platform/windows/detect.py
+++ b/platform/windows/detect.py
@@ -62,8 +62,8 @@ 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 debug symbols to release version', 'yes', ('yes', 'no', 'full')),
- BoolVariable('separate_debug_symbols', 'Create a separate file with the debug symbols', False),
+ EnumVariable('debug_symbols', 'Add debugging symbols to release builds', 'yes', ('yes', 'no', 'full')),
+ 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),
BoolVariable('use_mingw', 'Use the Mingw compiler, even if MSVC is installed. Only used on Windows.', False),
]