Merge pull request #337 from simonvanbernem/master

Make install_vcpkg_dendencies.bat work from any working directory
This commit is contained in:
Bartosz Taudul 2022-03-07 19:08:55 +01:00 committed by GitHub
commit 90d8762c33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,7 @@
@echo off @echo off
pushd %~dp0
REM get vcpkg distribution REM get vcpkg distribution
if not exist vcpkg git clone https://github.com/Microsoft/vcpkg.git if not exist vcpkg git clone https://github.com/Microsoft/vcpkg.git
@ -8,3 +10,5 @@ if not exist vcpkg\vcpkg.exe call vcpkg\bootstrap-vcpkg.bat -disableMetrics
REM install required packages REM install required packages
vcpkg\vcpkg.exe install --triplet x64-windows-static freetype glfw3 capstone[arm,arm64,x86] vcpkg\vcpkg.exe install --triplet x64-windows-static freetype glfw3 capstone[arm,arm64,x86]
popd