12 lines
216 B
Batchfile
12 lines
216 B
Batchfile
@echo off
|
|
echo Installing build dependencies...
|
|
pip install pyinstaller
|
|
|
|
echo Starting build process...
|
|
python build.py
|
|
|
|
echo.
|
|
echo If the build was successful, you can find the EXE in the 'dist' folder.
|
|
echo.
|
|
|
|
pause |