diff options
author | Jose <jose@zeroc.com> | 2016-12-22 11:25:14 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-12-22 11:25:14 +0100 |
commit | cb735675e20b2f407e32c96fc0e60866a9b7b674 (patch) | |
tree | ae896d330476bb2511161649c468c20ca34340d8 /scripts/Util.py | |
parent | Fixed bug when running local tests (diff) | |
download | ice-cb735675e20b2f407e32c96fc0e60866a9b7b674.tar.bz2 ice-cb735675e20b2f407e32c96fc0e60866a9b7b674.tar.xz ice-cb735675e20b2f407e32c96fc0e60866a9b7b674.zip |
Revert Windows default platform/configuration to Win32/Debug
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") |