Files
video-v1/vav2/platforms/windows/godot-plugin/build.bat

26 lines
658 B
Batchfile

@echo off
REM Godot Extension Build Script
echo [BUILD] Building Godot extension...
set BUILD_CONFIG=%1
if "%BUILD_CONFIG%"=="" set BUILD_CONFIG=Debug
echo Configuration: %BUILD_CONFIG%
echo [BUILD] Building VavCore.Wrapper...
dotnet build src\VavCore.Wrapper\VavCore.Wrapper.csproj -c %BUILD_CONFIG%
if errorlevel 1 (
echo [ERROR] VavCore.Wrapper build failed!
exit /b 1
)
echo [BUILD] Building VavCore.Godot...
dotnet build src\VavCore.Godot\VavCore.Godot.csproj -c %BUILD_CONFIG%
if errorlevel 1 (
echo [ERROR] VavCore.Godot build failed!
exit /b 1
)
echo [SUCCESS] Godot extension built successfully
echo Output: bin\%BUILD_CONFIG%\