Files
file-tool-wails/build.ps1
2026-06-30 12:30:49 +08:00

20 lines
562 B
PowerShell

# 年糕工具 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 ""