aboutsummaryrefslogtreecommitdiff
path: root/platform/windows/detect.py
diff options
context:
space:
mode:
authorHugo Locurcio2018-06-07 20:46:32 +0200
committerHugo Locurcio2018-06-07 21:40:54 +0200
commitd54b5da9406ffaad12d63b5895e53f293e834c34 (patch)
treee14eee564dffe3c62f9a88f94f3a9c769aeeb9e7 /platform/windows/detect.py
parentefdd0c4b894a4329469e3c8456b0440e7398c5d8 (diff)
downloadgodot-d54b5da9406ffaad12d63b5895e53f293e834c34.tar.gz
godot-d54b5da9406ffaad12d63b5895e53f293e834c34.tar.zst
godot-d54b5da9406ffaad12d63b5895e53f293e834c34.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),
]