Commit 3454fed3 authored by Max Kellermann's avatar Max Kellermann

win32/build.py: add option "--64" for a x64 build

parent a64ffda6
......@@ -10,6 +10,10 @@ configure_args = sys.argv[1:]
host_arch = 'i686-w64-mingw32'
if configure_args[0] == '--64':
configure_args = configure_args[1:]
host_arch = 'x86_64-w64-mingw32'
# the path to the MPD sources
mpd_path = os.path.dirname(os.path.dirname(sys.argv[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