blob: 4e1b1b8f05443fe7cf5863512cc4766f9773de40 (
plain)
1
2
3
4
5
6
|
$ErrorActionPreference = "Stop"
trap { $host.SetShouldExit(1) }
cd tools/vcpkg
# Lock to specific version of Protobuf port file to avoid build break
./vcpkg "--vcpkg-root=$PWD" install --overlay-ports="$PSScriptRoot\ports" protobuf:x64-windows
|