summaryrefslogtreecommitdiff
path: root/platform/uwp/detect.py
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-03-15 12:47:43 +0100
committerGitHub <noreply@github.com>2018-03-15 12:47:43 +0100
commit6f8b79ea5f2a712413ffedf10b3478c11ec60ee0 (patch)
tree5eeffffdf4a8d7ac6608ea0cd89d6ae7493901eb /platform/uwp/detect.py
parent506c4926577910230eceecd07df3cc42e423d25f (diff)
parentcc9e8aa73239c4d672775cfd05b84c21fe246b84 (diff)
Merge pull request #17528 from BastiaanOlij/missing_uwp_boolvariable
Added missing import BoolVariable
Diffstat (limited to 'platform/uwp/detect.py')
-rw-r--r--platform/uwp/detect.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py
index d850ab9436..3ee195e4f9 100644
--- a/platform/uwp/detect.py
+++ b/platform/uwp/detect.py
@@ -25,10 +25,11 @@ def can_build():
def get_opts():
+ from SCons.Variables import BoolVariable
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)),
+ BoolVariable('use_mingw', 'Use the Mingw compiler, even if MSVC is installed. Only used on Windows.', False),
]