1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
function CheckLastExitCode { if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } } git clone https://github.com/Microsoft/vcpkg.git --depth=1 & CheckLastExitCode cd vcpkg & .\bootstrap-vcpkg.bat & CheckLastExitCode .\vcpkg.exe install folly:x64-windows fmt:x64-windows & CheckLastExitCode .\vcpkg.exe integrate install & CheckLastExitCode