backend-infra-engineer: Release v0.3.2 snapshot

This commit is contained in:
scawful
2025-10-17 12:10:25 -04:00
parent 4371618a9b
commit 3d71417f62
857 changed files with 174954 additions and 45626 deletions

View File

@@ -1,10 +1,19 @@
# YAZE vcpkg Setup Script
# yaze vcpkg Setup Script
# This script sets up vcpkg for YAZE development on Windows
param(
[string]$Triplet = "x64-windows"
)
# Auto-detect architecture if not specified
if ($Triplet -eq "x64-windows") {
$Architecture = $env:PROCESSOR_ARCHITECTURE
if ($Architecture -eq "ARM64") {
$Triplet = "arm64-windows"
Write-Host "Auto-detected ARM64 architecture, using arm64-windows triplet" -ForegroundColor Yellow
}
}
# Set error handling
$ErrorActionPreference = "Continue"