mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-02 23:12:51 +02:00
9 lines
322 B
PowerShell
9 lines
322 B
PowerShell
# Copyright The OpenTelemetry Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
$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
|