7 lines
175 B
Batchfile
7 lines
175 B
Batchfile
@echo off
|
|
|
|
echo Building...
|
|
|
|
pyinstaller --icon icon.ico --collect-submodules shellingham --onefile --console --clean --name=fortrun --add-data="icon.ico;." main.py
|
|
|
|
echo Done |