From 62027b2ef39541971d44ffaa8ebbd21fafab0236 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 25 Apr 2021 12:38:20 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20AppVeyor:=20Use=20system=20(vcpk?= =?UTF-8?q?g)=20fmt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appveyor.yml | 2 +- docs/building.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2105aa377..9a1a8f903 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ image: Visual Studio 2017 cache: c:\tools\vcpkg\installed\ install: - - vcpkg install sdl2:x64-windows sdl2-mixer:x64-windows sdl2-ttf:x64-windows libsodium:x64-windows + - vcpkg install 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 . diff --git a/docs/building.md b/docs/building.md index 92ef302ae..3941f8968 100644 --- a/docs/building.md +++ b/docs/building.md @@ -126,13 +126,13 @@ Make sure to install the `C++ CMake tools for Windows` component for Visual Stud For the 64-bit version of the dependencies please run this command: ``` - vcpkg install sdl2:x64-windows sdl2-mixer:x64-windows sdl2-ttf:x64-windows libsodium:x64-windows gtest:x64-windows + vcpkg install fmt:x64-windows sdl2:x64-windows sdl2-mixer:x64-windows sdl2-ttf:x64-windows libsodium:x64-windows gtest:x64-windows ``` For the 32-bit version of the dependencies please run this command: ``` - vcpkg install sdl2:x86-windows sdl2-mixer:x86-windows sdl2-ttf:x86-windows libsodium:x86-windows gtest:x86-windows + vcpkg install fmt:x86-windows sdl2:x86-windows sdl2-mixer:x86-windows sdl2-ttf:x86-windows libsodium:x86-windows gtest:x86-windows ``` * **Manually**