vcpkg/ports/zeromq/vcpkg.json
Jón Bjarni df92e33bd8
[zeromq] prevent using hosts libbsd when cross compiling (#31007)
* zeromq prevent using hosts libbsd when cross compiling

* update port version

* remove unwanted change

* add version

* Disable libbsd entirely to prevent mismatch between zeromq artifacts for shared/static objects

* update git tree hash
2023-04-24 15:46:46 -07:00

47 lines
1.1 KiB
JSON

{
"name": "zeromq",
"version-date": "2023-01-31",
"port-version": 2,
"description": "The ZeroMQ lightweight messaging kernel is a library which extends the standard socket interfaces with features traditionally provided by specialised messaging middleware products",
"homepage": "https://github.com/zeromq/libzmq",
"license": "LGPL-3.0-only",
"supports": "!uwp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"draft": {
"description": "Build and install draft APIs"
},
"sodium": {
"description": "Using libsodium for CURVE security",
"dependencies": [
"libsodium"
]
},
"websockets": {
"description": "Enable WebSocket transport"
},
"websockets-secure": {
"description": "Enable WebSocket transport with TSL (wss)",
"dependencies": [
"libgnutls",
{
"name": "zeromq",
"default-features": false,
"features": [
"websockets"
]
}
]
}
}
}