Files
yaze/vcpkg.json
scawful b5d908d39d Add abseil dependency and enhance vcpkg configuration
- Introduced the abseil library as a dependency in vcpkg.json, excluding UWP platform support.
- Updated the vcpkg configuration to include a new features section for pkg-config, improving dependency detection.
- Modified yaze.vcxproj to conditionally include additional dependencies and library directories based on vcpkg integration status, enhancing build flexibility.
- Organized source and header files in the project structure for better clarity and maintainability.
2025-09-27 21:20:55 -04:00

38 lines
677 B
JSON

{
"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": "c8696863d371ab7f46e213d8f5ca923c4aef2a00",
"overrides": [
{
"name": "abseil",
"version": "20240116.2"
}
],
"features": {
"pkg-config": {
"description": "Use pkg-config for dependency detection",
"dependencies": []
}
}
}