aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/configcat/vcpkg.json
blob: fe4a8a108a079a3f84da9663a0ae8cf0ddc9760b (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
{
  "name": "configcat",
  "version": "4.0.5",
  "description": "ConfigCat SDK for C++ provides easy integration for your application to ConfigCat. ConfigCat is a feature flag and configuration management service that lets you separate feature releases from deployments. Alternative to LaunchDarkly.",
  "homepage": "https://configcat.com/",
  "license": "MIT",
  "dependencies": [
    "nlohmann-json",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    },
    "z4kn4fein-semver"
  ],
  "default-features": [
    "network",
    "sha"
  ],
  "features": {
    "network": {
      "description": "Use curl for network",
      "dependencies": [
        {
          "name": "curl",
          "default-features": false,
          "features": [
            "ssl"
          ]
        },
        {
          "name": "openssl",
          "platform": "linux"
        }
      ]
    },
    "sha": {
      "description": "Use hash-library for SHA calculations",
      "dependencies": [
        "hash-library"
      ]
    }
  }
}