summaryrefslogtreecommitdiffstats
path: root/platform/uwp/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-03-14 21:27:00 +0100
committerGitHub <noreply@github.com>2018-03-14 21:27:00 +0100
commit955397dfd5845c0bd1510581a77d20989f13ab19 (patch)
tree89aac938b1aeffa3b805ae54c536b6d46c69c040 /platform/uwp/detect.py
parente767482952c77d154e65150b3df38e42cc0783c7 (diff)
parentd1318ee12c6c19bba899ce97e46a30c461ebac44 (diff)
downloadredot-engine-955397dfd5845c0bd1510581a77d20989f13ab19.tar.gz
Merge pull request #17194 from garyo/scons_find_msvc
Enable SCons to autodetect Windows MSVC compiler
Diffstat (limited to 'platform/uwp/detect.py')
-rw-r--r--platform/uwp/detect.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py
index f2c5c5d42e..d850ab9436 100644
--- a/platform/uwp/detect.py
+++ b/platform/uwp/detect.py
@@ -27,6 +27,8 @@ def can_build():
def get_opts():
return [
+ ('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)),
]