Files
Vita3K/.ci/setup-windows-msvc.ps1
T
KorewaWatchful cf37c74444 ci: overhaul ci
2026-05-21 10:50:42 -04:00

17 lines
294 B
PowerShell

param(
[Parameter(Mandatory = $true)]
[string]$VcpkgTriplet
)
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
$repoRoot = Resolve-Path (Join-Path $PSScriptRoot '..')
Push-Location $repoRoot
try {
vcpkg install --triplet $VcpkgTriplet
}
finally {
Pop-Location
}