backend-infra-engineer: Release v0.3.2 snapshot
This commit is contained in:
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user