diff options
| author | coco875 <59367621+coco875@users.noreply.github.com> | 2024-04-13 02:54:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-12 18:54:59 -0600 |
| commit | e2c19fd4bc8e5f7db8e64629491b80a63c53ee98 (patch) | |
| tree | 616962007475725799158741c69c453429a989ed /tools/windows_build.py | |
| parent | 2d3278d0735386c37b37691dadfaee0dd687d76d (diff) | |
use github actions instead (#605)
* Create actions
Diffstat (limited to 'tools/windows_build.py')
| -rw-r--r-- | tools/windows_build.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/windows_build.py b/tools/windows_build.py new file mode 100644 index 000000000..ffa999296 --- /dev/null +++ b/tools/windows_build.py @@ -0,0 +1,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())
\ No newline at end of file |
