aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/infoware/vcpkg.json
blob: db5414359351fe19d4bfd6d693f9de3ff76cf5b3 (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
{
  "name": "infoware",
  "version-date": "2023-04-12",
  "description": "C++ Library for pulling system and hardware information, without hitting the command line.",
  "homepage": "https://github.com/ThePhD/infoware",
  "license": "CC0-1.0",
  "supports": "!android & !uwp & !(windows & arm)",
  "dependencies": [
    {
      "name": "infoware",
      "host": true
    },
    {
      "name": "pciids",
      "platform": "native"
    },
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "d3d": {
      "description": [
        "Use Direct3D for GPU detection.",
        "This choice has priority over opencl and opengl."
      ],
      "supports": "windows"
    },
    "opencl": {
      "description": [
        "Use OpenCL for GPU detection.",
        "This choice has priority over opengl."
      ],
      "dependencies": [
        "opencl"
      ]
    },
    "opengl": {
      "description": "Use OpenGL for GPU detection.",
      "supports": "!osx & !ios",
      "dependencies": [
        "opengl"
      ]
    },
    "x11": {
      "description": "Use X11 for display detection.",
      "supports": "!windows"
    }
  }
}