Commit 097e3032 authored by Max Kellermann's avatar Max Kellermann

win32/build.py: add option --32

parent b6ddeaac
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment