vcpkg/ports/microsoft-signalr/vcpkg.json
Cheney Wang 93fc361b39
[microsoft-signalr] Fix msgpackConfig.cmake is not found (#31085)
* [microsoft-signalr] Fix msgpackConfig.cmake not find

* Format
2023-04-25 22:46:39 -07:00

54 lines
1.2 KiB
JSON

{
"name": "microsoft-signalr",
"version": "0.1.0-alpha4",
"port-version": 4,
"description": "C++ Client for ASP.NET Core SignalR.",
"homepage": "https://github.com/aspnet/SignalR-Client-Cpp",
"dependencies": [
"jsoncpp",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"default-features"
],
"features": {
"cpprestsdk": {
"description": "Add default Http and WebSocket implementations using CppRestSDK",
"dependencies": [
{
"name": "cpprestsdk",
"features": [
"default-features",
"websockets"
]
}
]
},
"default-features": {
"description": "Features installed by default",
"dependencies": [
{
"name": "microsoft-signalr",
"features": [
"cpprestsdk"
],
"platform": "!uwp"
}
]
},
"messagepack": {
"description": "Add support for the messagepack hub protocol, must enable in code still",
"dependencies": [
"msgpack"
]
}
}
}