vcpkg/ports/ixwebsocket/vcpkg.json
Benjamin Sergeant 6a63ecae92
[ixwebsocket] update to 11.2.3 (#16856)
* ixwebsocket 11.2.0

* deledt port-version

* update version

* try version 11.2.3 with an include fix for CertOpenStore usage / https://docs.microsoft.com/en-us/windows/win32/api/wincrypt/nf-wincrypt-certopenstore

* Running ./vcpkg x-add-version ixwebsocket

* Update ixwebsocket.json

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-03-26 12:07:32 -07:00

63 lines
1.3 KiB
JSON

{
"name": "ixwebsocket",
"version-semver": "11.2.3",
"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"
}
]
}
}
}