From bd5a6e64f4c314654c2c917f04c3e90ebebba96a Mon Sep 17 00:00:00 2001 From: Klaus Schuch Date: Fri, 28 Jul 2023 15:55:45 +0200 Subject: [PATCH] Use vcpkg master branch --- build.bat | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.bat b/build.bat index 04eefad..7b43996 100644 --- a/build.bat +++ b/build.bat @@ -10,7 +10,12 @@ set VCPKG_DEFAULT_TRIPLET=x64-windows if not exist vcpkg git clone https://github.com/Microsoft/vcpkg.git cd .\vcpkg\ -git checkout 2023.02.24 + +rem By default we use the master branch of vcpkg. +rem The last successfully tested vcpkg release was 2023.07.21. +rem Uncomment the next line to use this specific release of vcpkg (this might help if the current master branch of vcpkg makes problems) +rem git checkout 2023.07.21 + if not exist vcpkg.exe call .\bootstrap-vcpkg.bat call .\vcpkg.exe install libxml2 zlib cd ..