feat: Add vcpkg configuration and update dependencies in vcpkg.json

- Introduced a new vcpkg-configuration.json file to define the default registry and baseline for vcpkg.
- Updated vcpkg.json to include a schema reference, a new builtin-baseline, and refined dependency specifications for SDL2, abseil, yaml-cpp, and zlib, ensuring compatibility with Windows platform.
This commit is contained in:
scawful
2025-10-09 10:24:13 -04:00
parent 45d1905469
commit 0b0be64d2b
2 changed files with 33 additions and 4 deletions

10
vcpkg-configuration.json Normal file
View File

@@ -0,0 +1,10 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg-configuration.schema.json",
"default-registry": {
"kind": "git",
"repository": "https://github.com/microsoft/vcpkg",
"baseline": "a42af01b72c28a8e1d7b48107b33e4f286a55ef6"
},
"registries": []
}