|
|
|
@ -20,11 +20,11 @@ pip install pygame
|
|
|
|
|
### With Linux/Unix
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata" --icon icon.png
|
|
|
|
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata" --icon=icon.ico
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### With Windows
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata;gamedata" --icon icon.png
|
|
|
|
|
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata;gamedata" --icon=icon.ico
|
|
|
|
|
```
|
|
|
|
|