win32/build.py: add option --32

This commit is contained in:
Max Kellermann 2017-02-20 21:06:27 +01:00
parent b6ddeaacf2
commit 097e30321b
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,8 @@ while len(configure_args) > 0:
arg = configure_args[0]
if arg == '--64':
x64 = True
elif arg == '--32':
x64 = False
else:
break
configure_args.pop(0)