From 0fbb7111775b09cdb4ca6d837881d829af3339fd Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 27 Sep 2025 21:28:43 -0400 Subject: [PATCH] Add vcpkg.json.backup for Yaze project configuration - Created a backup of the vcpkg.json file, detailing project dependencies including zlib, libpng, sdl2, and abseil, with platform exclusions for UWP. - Specified a builtin-baseline and provided version overrides for abseil, ensuring consistent dependency management. --- vcpkg.json.backup | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 vcpkg.json.backup diff --git a/vcpkg.json.backup b/vcpkg.json.backup new file mode 100644 index 00000000..ac62f41c --- /dev/null +++ b/vcpkg.json.backup @@ -0,0 +1,31 @@ +{ + "name": "yaze", + "version": "0.3.1", + "description": "Yet Another Zelda3 Editor", + "dependencies": [ + { + "name": "zlib", + "platform": "!uwp" + }, + { + "name": "libpng", + "platform": "!uwp" + }, + { + "name": "sdl2", + "platform": "!uwp", + "features": ["vulkan"] + }, + { + "name": "abseil", + "platform": "!uwp" + } + ], + "builtin-baseline": "2024.01.12", + "overrides": [ + { + "name": "abseil", + "version": "20240116.2" + } + ] +}