tracy/vcpkg/install_vcpkg_dependencies.bat
2022-06-13 22:30:56 +02:00

15 lines
316 B
Batchfile

@echo off
pushd %~dp0
REM get vcpkg distribution
if not exist vcpkg git clone https://github.com/Microsoft/vcpkg.git
REM build vcpkg
if not exist vcpkg\vcpkg.exe call vcpkg\bootstrap-vcpkg.bat -disableMetrics
REM install required packages
vcpkg\vcpkg.exe install --triplet x64-windows-static
popd