36 lines
760 B
Batchfile
36 lines
760 B
Batchfile
@echo off
|
|
echo === LineDance Player - Windows Build ===
|
|
echo.
|
|
|
|
if exist "venv\Scripts\activate.bat" (
|
|
call venv\Scripts\activate.bat
|
|
) else (
|
|
echo ADVARSEL: venv ikke fundet
|
|
)
|
|
|
|
pip install pyinstaller >nul 2>&1
|
|
|
|
if exist "dist\LineDancePlayer" rmdir /s /q "dist\LineDancePlayer"
|
|
if exist "build\LineDancePlayer" rmdir /s /q "build\LineDancePlayer"
|
|
|
|
echo Bygger... (1-3 minutter)
|
|
echo.
|
|
|
|
pyinstaller build_windows.spec --clean --noconfirm
|
|
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo FEJL: Se fejlbesked ovenfor
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo.
|
|
echo === FAERDIG ===
|
|
echo Program: dist\LineDancePlayer\LineDancePlayer.exe
|
|
echo.
|
|
echo HUSK: Kopieer hele dist\LineDancePlayer\ mappen - ikke kun .exe!
|
|
echo HUSK: VLC skal vaere installeret paa maskinen.
|
|
echo.
|
|
pause
|