aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/zeromq/vcpkg.json
blob: b53a74786d9015c2ac51acbc422510094c1ca876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
  "name": "zeromq",
  "version": "4.3.5",
  "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": "MPL-2.0",
  "supports": "!uwp & !xbox",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "curve": {
      "description": "Enable CURVE security"
    },
    "draft": {
      "description": "Build and install draft APIs"
    },
    "sodium": {
      "description": "Using libsodium for CURVE security",
      "dependencies": [
        "libsodium",
        {
          "name": "zeromq",
          "default-features": false,
          "features": [
            "curve"
          ]
        }
      ]
    },
    "websockets": {
      "description": "Enable WebSocket transport"
    },
    "websockets-secure": {
      "description": "Enable WebSocket transport with TSL (wss)",
      "dependencies": [
        "libgnutls",
        {
          "name": "zeromq",
          "default-features": false,
          "features": [
            "websockets"
          ]
        }
      ]
    }
  }
}