automation

This commit is contained in:
2025-07-19 18:37:57 +10:00
parent 757b44c111
commit aa44b052a9
3 changed files with 111 additions and 0 deletions

22
build-windows.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
echo Building PNGTuber Plus for Windows...
:: Create build directory
if not exist "build\windows" mkdir "build\windows"
:: Build the project
echo Running Godot export...
godot --headless --verbose --export-release "Windows Desktop" "build\windows\PNGTuber-Plus.exe"
if %ERRORLEVEL% EQU 0 (
echo.
echo ✅ Build completed successfully!
echo Output: build\windows\PNGTuber-Plus.exe
echo.
pause
) else (
echo.
echo ❌ Build failed with error code %ERRORLEVEL%
echo.
pause
)