2020-04-21 17:52:25 +00:00
|
|
|
@echo off
|
2022-06-18 15:15:28 +00:00
|
|
|
setlocal
|
2020-04-21 17:52:25 +00:00
|
|
|
|
2022-03-07 17:44:51 +00:00
|
|
|
pushd %~dp0
|
|
|
|
|
2020-04-21 17:52:25 +00:00
|
|
|
REM get vcpkg distribution
|
2022-06-18 15:15:28 +00:00
|
|
|
if not exist vcpkg git clone https://github.com/Microsoft/vcpkg.git || exit /b 1
|
2020-04-21 17:52:25 +00:00
|
|
|
|
|
|
|
REM build vcpkg
|
2022-06-18 15:15:28 +00:00
|
|
|
if not exist vcpkg\vcpkg.exe call vcpkg\bootstrap-vcpkg.bat -disableMetrics || exit /b 2
|
|
|
|
|
|
|
|
set VCPKG_ROOT=%cd%\vcpkg
|
2020-04-21 17:52:25 +00:00
|
|
|
|
|
|
|
REM install required packages
|
2022-06-18 15:15:28 +00:00
|
|
|
vcpkg\vcpkg.exe install --triplet x64-windows-static || exit /b 3
|
2022-03-07 17:44:51 +00:00
|
|
|
|
|
|
|
popd
|