diff options
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 193ad8de954..23e321c9a98 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -244,10 +244,10 @@ class Windows(Platform): pass # Nothing to do, we don't support the make build system on Windows def getDefaultBuildPlatform(self): - return "x64" + return "Win32" def getDefaultBuildConfig(self): - return "Release" + return "Debug" def getCompiler(self): out = run("cl") |