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:
10
vcpkg-configuration.json
Normal file
10
vcpkg-configuration.json
Normal 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": []
|
||||||
|
}
|
||||||
|
|
||||||
27
vcpkg.json
27
vcpkg.json
@@ -1,14 +1,33 @@
|
|||||||
{
|
{
|
||||||
|
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
|
||||||
"name": "yaze",
|
"name": "yaze",
|
||||||
"version": "0.3.2",
|
"version": "0.3.2",
|
||||||
"description": "Yet Another Zelda3 Editor",
|
"description": "Yet Another Zelda3 Editor",
|
||||||
|
"builtin-baseline": "a42af01b72c28a8e1d7b48107b33e4f286a55ef6",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
{
|
{
|
||||||
"name": "sdl2",
|
"name": "sdl2",
|
||||||
"platform": "!uwp",
|
"platform": "windows",
|
||||||
"features": ["vulkan"]
|
"default-features": false,
|
||||||
|
"features": []
|
||||||
},
|
},
|
||||||
"yaml-cpp",
|
{
|
||||||
"zlib"
|
"name": "abseil",
|
||||||
|
"platform": "windows"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "yaml-cpp",
|
||||||
|
"platform": "windows"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "zlib",
|
||||||
|
"platform": "windows"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"name": "sdl2",
|
||||||
|
"version": "2.30.9"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user