Add pc/ — PyInstaller build scripts, .ico icon, and README

This commit is contained in:
KansaiGaijin
2026-07-07 13:25:27 +12:00
parent 262292228e
commit 1893073af0
5 changed files with 102 additions and 0 deletions

19
pc/build.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
# Cross-platform PyInstaller build (run from pc/ on any OS)
set -euo pipefail
cd "$(dirname "$0")"
pip install pyinstaller
python -m PyInstaller \
--onefile \
--name Kanjin \
--icon=kanjin.ico \
--distpath=. \
--workpath=build_temp \
../main.py
rm -rf build_temp __pycache__ Kanjin.spec
echo ""
echo "Done! Deliver pc/Kanjin.exe to players."