vcpkg/ports/ixwebsocket/vcpkg.json
NancyLi1013 be12a4dd1c
[ixwebsocket] Fix cmake-configure files install path (#16710)
* [ixwebsocket] Fix cmake-configure files install path

* Update versions
2021-03-15 15:57:19 -07:00

64 lines
1.3 KiB
JSON

{
"name": "ixwebsocket",
"version-semver": "11.0.4",
"port-version": 1,
"description": "Lightweight WebSocket Client and Server + HTTP Client and Server",
"homepage": "https://github.com/machinezone/IXWebSocket",
"dependencies": [
"zlib"
],
"default-features": [
"ssl"
],
"features": {
"mbedtls": {
"description": "SSL support (mbedTLS)",
"dependencies": [
"mbedtls"
]
},
"openssl": {
"description": "SSL support (OpenSSL)",
"dependencies": [
"openssl"
]
},
"sectransp": {
"description": "SSL support (sectransp)"
},
"ssl": {
"description": "Default SSL backend",
"dependencies": [
{
"name": "ixwebsocket",
"features": [
"sectransp"
],
"platform": "osx"
},
{
"name": "ixwebsocket",
"features": [
"mbedtls"
],
"platform": "windows"
},
{
"name": "ixwebsocket",
"features": [
"mbedtls"
],
"platform": "windows & uwp"
},
{
"name": "ixwebsocket",
"features": [
"openssl"
],
"platform": "!uwp & !windows & !osx"
}
]
}
}
}