aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/mesa/vcpkg.json
blob: 9e3177a0b80be7407e41c959b1eb55cd8b85d4ff (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
  "name": "mesa",
  "version": "24.0.7",
  "port-version": 3,
  "description": "Mesa - The 3D Graphics Library",
  "homepage": "https://www.mesa3d.org/",
  "license": "MIT AND BSL-1.0 AND SGI-B-2.0",
  "supports": "!(windows & arm) & !staticcrt & !uwp",
  "dependencies": [
    {
      "name": "vcpkg-get-python-packages",
      "host": true
    },
    {
      "name": "vcpkg-tool-meson",
      "host": true
    },
    "zlib",
    "zstd"
  ],
  "default-features": [
    "gles1",
    "gles2",
    {
      "name": "llvm",
      "platform": "x64"
    }
  ],
  "features": {
    "egl": {
      "description": "Build support for EGL platform",
      "dependencies": [
        "egl-registry"
      ]
    },
    "gles1": {
      "description": "Build support for OpenGL ES 1.x",
      "dependencies": [
        "opengl"
      ]
    },
    "gles2": {
      "description": "Build support for OpenGL ES 2.x and 3.x",
      "dependencies": [
        "opengl"
      ]
    },
    "llvm": {
      "description": "Build with llvmpipe",
      "dependencies": [
        {
          "name": "llvm",
          "default-features": false,
          "features": [
            "enable-rtti",
            "libclc"
          ]
        },
        {
          "name": "llvm",
          "default-features": false,
          "features": [
            "target-arm"
          ],
          "platform": "arm32"
        },
        {
          "name": "llvm",
          "default-features": false,
          "features": [
            "target-aarch64"
          ],
          "platform": "arm64"
        },
        {
          "name": "llvm",
          "default-features": false,
          "features": [
            "target-x86"
          ],
          "platform": "x64 | x86"
        }
      ]
    },
    "offscreen": {
      "description": "Build with support for offscreen rendering (OSMesa)",
      "dependencies": [
        "opengl"
      ]
    }
  }
}