From 50aa85d909e700d59f9833a6c6df39228360a2cb Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Tue, 1 Jul 2025 20:31:30 +0000 Subject: [PATCH] build: update vcpkg ports list, drop gettext Update the vcpkg ports list with the currently used ports and their features. Drop `gettext` for `gettext-libintl`, with the binary catalog creation tools coming from a NuGet package. Signed-off-by: Rafael Kitover --- CMakeLists.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 07083c41..07131753 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,11 +22,14 @@ if(TAG_RELEASE) include(MakeReleaseCommitAndTag) endif() -set(VCPKG_DEPS pkgconf zlib pthreads sdl3 gettext wxwidgets) +set(VCPKG_DEPS pkgconf zlib pthreads gettext-libintl wxwidgets nanosvg) set(VCPKG_DEPS_OPTIONAL - ffmpeg ENABLE_FFMPEG - faudio ENABLE_FAUDIO + "sdl3[vulkan]" ENABLE_SDL3 + "sdl2[samplerate]" ENABLE_SDL2 + openal-soft ENABLE_OPENAL + "ffmpeg[x264,x265]" ENABLE_FFMPEG + faudio ENABLE_FAUDIO ) include(Set-Toolchain-vcpkg)