aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-bullet3/vcpkg.json
blob: ecf08fa1903b5c4e6a5bc31b904cb9f703153be6 (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
{
  "name": "vcpkg-ci-bullet3",
  "version-string": "ci",
  "description": "Port to force features of bullet3 within CI",
  "homepage": "https://github.com/microsoft/vcpkg",
  "license": "MIT",
  "dependencies": [
    "bullet3",
    {
      "name": "vcpkg-cmake",
      "host": true
    }
  ],
  "default-features": [
    "extras",
    {
      "name": "opencl",
      "platform": "!uwp"
    }
  ],
  "features": {
    "extras": {
      "description": "bullet3[extras]",
      "dependencies": [
        {
          "name": "bullet3",
          "features": [
            "extras"
          ]
        }
      ]
    },
    "opencl": {
      "description": "bullet3[opencl]",
      "dependencies": [
        {
          "name": "bullet3",
          "features": [
            "opencl"
          ]
        }
      ]
    }
  }
}