vcpkg/ports/redis-plus-plus/vcpkg.json
Billy O'Neal 638b1588be
Update vcpkg-tool to 2023-06-07 + xbox triplets cleanup (#31723)
* Update vcpkg-tool to 2023-05-31 + xbox triplets cleanup

https://github.com/microsoft/vcpkg-tool/releases/tag/2023-05-30 +
https://github.com/microsoft/vcpkg-tool/releases/tag/2023-05-31 +
https://github.com/microsoft/vcpkg-tool/releases/tag/2023-06-07

Clean up xbox triplets following teaching vcpkg.exe about xbox more directly.

Also deletes the seemingly-no-longer-used vcpkg_get_dep_info.cmake and vcpkg_get_tags.cmake.

Also: [redis-plus-plus] Add DISABLE_PARALLEL_CONFIGURE due to source tree write.
2023-06-08 11:17:29 -07:00

43 lines
914 B
JSON

{
"name": "redis-plus-plus",
"version-semver": "1.3.8",
"port-version": 1,
"description": "This is a C++ client for Redis. It's based on hiredis, and written in C++ 11",
"homepage": "https://github.com/sewenew/redis-plus-plus",
"license": "Apache-2.0",
"dependencies": [
"hiredis",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"async": {
"description": "Build with async",
"dependencies": [
"libuv"
]
},
"async-std": {
"description": "Build async with std::future",
"dependencies": [
{
"name": "redis-plus-plus",
"default-features": false,
"features": [
"async"
]
}
]
},
"cxx17": {
"description": "Build redis-plus-plus with cxx 17 standard"
}
}
}