summaryrefslogtreecommitdiff
path: root/tools/windows_build.py
blob: ffa99929697ff6c1cd545cb202deb0d0fd9e61b7 (plain)
1
2
3
4
5
6
import subprocess

bp = subprocess.Popen("tools/mingw64/w64devkit.exe", stdin=subprocess.PIPE)
bp.stdin.write(b"make assets && make -j && exit\n")
bp.stdin.close()
exit(bp.wait())