aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/llgl/vcpkg.json
blob: 7f02d8d820344b8e997c1519f1fc3e138c51febe (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
{
  "name": "llgl",
  "version-date": "2023-03-05",
  "port-version": 1,
  "description": "Low Level Graphics Library (LLGL) is a thin abstraction layer for the modern graphics APIs OpenGL, Direct3D, Vulkan, and Metal.",
  "homepage": "https://github.com/LukasBanana/LLGL",
  "license": "BSD-3-Clause",
  "supports": "!uwp",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "direct3d11": {
      "description": "Support for direct3d11",
      "supports": "windows"
    },
    "direct3d12": {
      "description": "Support for direct3d12",
      "supports": "windows"
    },
    "metal": {
      "description": "Support for metal",
      "supports": "osx | ios"
    },
    "opengl": {
      "description": "Support for opengl"
    },
    "vulkan": {
      "description": "Support for vulkan",
      "supports": "!osx",
      "dependencies": [
        "vulkan"
      ]
    }
  }
}