From b64afd9bc03ec3c60200e94ff0802a3c864416c5 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 25 Apr 2021 12:45:34 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20AppVeyor:=20Update=20vcpkg=20bef?= =?UTF-8?q?ore=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes old version of libfmt --- appveyor.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 9a1a8f903..7aa3b8476 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,11 @@ image: Visual Studio 2017 cache: c:\tools\vcpkg\installed\ install: - - vcpkg install fmt:x64-windows sdl2:x64-windows sdl2-mixer:x64-windows sdl2-ttf:x64-windows libsodium:x64-windows + - cd C:\Tools\vcpkg + - git pull + - .\bootstrap-vcpkg.bat + - cd %APPVEYOR_BUILD_FOLDER% + - vcpkg install --recurse fmt:x64-windows sdl2:x64-windows sdl2-mixer:x64-windows sdl2-ttf:x64-windows libsodium:x64-windows before_build: - cmake -G "Visual Studio 15 2017" -A x64 -DNIGHTLY_BUILD=ON -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake .