blob: fab61a520e9e5fc71648fcec7e066e787037773d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
@echo off
setlocal enableextensions
setlocal enabledelayedexpansion
set "PATH=%ProgramFiles%\CMake\bin;%~dp0;%ProgramData%\chocolatey\bin;%PATH%"
if defined VCPKG_ROOT (
set "PATH=%VCPKG_ROOT%;%PATH%"
) else (
set "PATH=%~dp0vcpkg;%PATH%"
)
pushd %~dp0
net session >nul 2>&1
if %errorLevel% == 0 (
echo Running with Administrative privilege...
REM Fail if chocolatey is not installed
where /Q choco
if %ERRORLEVEL% == 1 (
echo This script requires chocolatey. Installation instructions: https://chocolatey.org/docs/installation
exit -1
)
REM Install tools needed for building, but only if not installed yet
where /Q vswhere || choco install -y vswhere
where /Q cmake || choco install -y cmake
where /Q git || choco install -y git
) else (
echo Running without Administrative privilege...
)
if not defined BUILDTOOLS_VERSION (
REM Print current Visual Studio installations detected
where /Q vswhere
if %ERRORLEVEL% == 0 (
echo Visual Studio installations detected:
vswhere -property installationPath
)
)
REM This script allows to pass architecture in ARCH env var
if not defined ARCH (
set ARCH=x64
)
REM Try to autodetect Visual Studio
call "%~dp0vcvars.cmd"
if "%TOOLS_VS_NOTFOUND%" == "1" (
echo WARNING: cannot autodetect Visual Studio installation!
)
where /Q vcpkg.exe
if %ERRORLEVEL% == 1 (
REM Build our own vcpkg from source
REM Prefer building in VCPKG_ROOT
if not defined VCPKG_ROOT (
set "VCPKG_ROOT=%~dp0\vcpkg"
)
pushd "!VCPKG_ROOT!"
call bootstrap-vcpkg.bat
popd
) else (
echo Using existing vcpkg installation...
)
REM Install dependencies
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install gtest:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install --overlay-ports=%~dp0ports benchmark:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install --overlay-ports=%~dp0ports protobuf:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install ms-gsl:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install nlohmann-json:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install abseil:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install gRPC:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install prometheus-cpp:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install curl:%ARCH%-windows
vcpkg "--vcpkg-root=%VCPKG_ROOT%" install thrift:%ARCH%-windows
popd
exit /b 0
|