2026-06-23 15:33:22 +08:00
|
|
|
# 年糕工具 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
|
2026-06-30 12:30:49 +08:00
|
|
|
Write-Host " $buildDir\年糕工具.exe" -ForegroundColor Gray
|
2026-06-23 15:33:22 +08:00
|
|
|
Write-Host ""
|