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.
This commit is contained in:
scawful
2025-09-27 21:28:43 -04:00
parent 51081c1bd0
commit 0fbb711177

31
vcpkg.json.backup Normal file
View File

@@ -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"
}
]
}