From 1c05b8a2d33cf6b778c6ac2fb2d81682dc099766 Mon Sep 17 00:00:00 2001 From: ZhilkinSerg Date: Thu, 13 Feb 2020 11:14:02 +0300 Subject: [PATCH] Update COMPILING-VS-VCPKG.md --- doc/COMPILING/COMPILING-VS-VCPKG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/COMPILING/COMPILING-VS-VCPKG.md b/doc/COMPILING/COMPILING-VS-VCPKG.md index 0cdece91be780..28a19573b8347 100644 --- a/doc/COMPILING/COMPILING-VS-VCPKG.md +++ b/doc/COMPILING/COMPILING-VS-VCPKG.md @@ -34,26 +34,26 @@ cd vcpkg #### install 64 bit dependencies: ```cmd -.\vcpkg --triplet x64-windows install sdl2 sdl2-image sdl2-mixer[libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext +.\vcpkg --triplet x64-windows install sdl2 sdl2-image sdl2-mixer[dynamic-load,libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext ``` or (if you want to build statically linked executable) ```cmd -vcpkg --triplet x64-windows-static install sdl2 sdl2-image sdl2-mixer[libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext +vcpkg --triplet x64-windows-static install sdl2 sdl2-image sdl2-mixer[dynamic-load,libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext ``` #### install 32 bit dependencies: ```cmd -.\vcpkg --triplet x86-windows install sdl2 sdl2-image sdl2-mixer[libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext +.\vcpkg --triplet x86-windows install sdl2 sdl2-image sdl2-mixer[dynamic-load,libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext ``` or (if you want to build statically linked executable) ```cmd -.\vcpkg --triplet x86-windows-static install sdl2 sdl2-image sdl2-mixer[libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext +.\vcpkg --triplet x86-windows-static install sdl2 sdl2-image sdl2-mixer[dynamic-load,libflac,mpg123,libmodplug,libvorbis] sdl2-ttf gettext ``` #### upgrade all dependencies: