# 年糕工具 Build Script # Usage: .\build.ps1 $ErrorActionPreference = "Stop" $buildDir = "build\bin" Write-Host "" Write-Host "=== 年糕工具 Build ===" -ForegroundColor Cyan Write-Host "" # Build with nofitz (go-fitz excluded, DLL embedded) Write-Host "Building..." -ForegroundColor Yellow wails build -tags nofitz if ($LASTEXITCODE -ne 0) { Write-Host "Build failed!" -ForegroundColor Red; exit 1 } Write-Host "" Write-Host "=== Build Complete ===" -ForegroundColor Green Write-Host " $buildDir\年糕工具.exe" -ForegroundColor Gray Write-Host ""