aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libssh/vcpkg.json
blob: 410165d6b2d9ceef6c0c1f4f90f470e3cf24cb6a (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
{
  "name": "libssh",
  "version": "0.11.3",
  "description": "libssh is a multiplatform C library implementing the SSHv2 protocol on client and server side",
  "homepage": "https://www.libssh.org/",
  "license": "LGPL-2.1-only",
  "supports": "!uwp & !xbox",
  "dependencies": [
    {
      "name": "openssl",
      "default-features": false
    },
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    {
      "name": "pcap",
      "platform": "!android"
    },
    {
      "name": "server",
      "platform": "!android"
    }
  ],
  "features": {
    "pcap": {
      "description": "SSH server support"
    },
    "server": {
      "description": "Pcap generation support"
    },
    "zlib": {
      "description": "zlib compression support",
      "dependencies": [
        "zlib"
      ]
    }
  }
}