aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libcoro/vcpkg.json
blob: 505e46a5be3976716f46a6945b3937b0c521d948 (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
{
  "name": "libcoro",
  "version": "0.15.0",
  "description": "C++20 coroutine library",
  "homepage": "https://github.com/jbaldwin/libcoro",
  "license": "Apache-2.0",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    }
  ],
  "features": {
    "networking": {
      "description": "Include networking features.",
      "supports": "linux",
      "dependencies": [
        "c-ares"
      ]
    },
    "tls": {
      "description": "Include SSL features.",
      "dependencies": [
        {
          "name": "libcoro",
          "default-features": false,
          "features": [
            "networking"
          ]
        },
        "openssl"
      ]
    }
  }
}