blob: c2bd78b84e2064cf1575cb419f20f4583f787f93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Set up vcpkg and install required packages.
if (!(Test-Path -Path vcpkg/.git)) {
git clone https://github.com/Microsoft/vcpkg.git
}
cd vcpkg
# latest version is having an issue while doing vcpkg integrate install
git checkout 328bd79eb8340b8958f567aaf5f8ffb81056cd36
cd ..
.\vcpkg\bootstrap-vcpkg.bat
|