aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/directxtex/vcpkg.json
blob: 347ad442df21a5ac1162440e2e57d43b78c7c536 (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
{
  "name": "directxtex",
  "version-date": "2025-10-27",
  "description": "DirectXTex texture processing library",
  "homepage": "https://github.com/Microsoft/DirectXTex",
  "documentation": "https://github.com/microsoft/DirectXTex/wiki",
  "license": "MIT",
  "supports": "(windows & !arm32) | linux",
  "dependencies": [
    {
      "name": "directx-headers",
      "platform": "mingw | linux"
    },
    "directxmath",
    {
      "name": "ms-gdkx",
      "platform": "xbox"
    },
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    {
      "name": "dx11",
      "platform": "windows & !xbox"
    }
  ],
  "features": {
    "dx11": {
      "description": "Build with DirectX11 support",
      "supports": "windows & !xbox"
    },
    "dx12": {
      "description": "Build with DirectX12 support for Windows 10/Windows 11",
      "dependencies": [
        {
          "name": "directx-headers",
          "platform": "windows & !xbox"
        }
      ]
    },
    "jpeg": {
      "description": "Add the JPEG auxiliary functions",
      "supports": "linux",
      "dependencies": [
        "libjpeg-turbo"
      ]
    },
    "openexr": {
      "description": "Enable OpenEXR support",
      "dependencies": [
        "openexr"
      ]
    },
    "png": {
      "description": "Add the PNG auxiliary functions",
      "supports": "linux",
      "dependencies": [
        "libpng"
      ]
    },
    "spectre": {
      "description": "Build Spectre-mitigated library"
    },
    "tools": {
      "description": "texture command-line tools",
      "supports": "windows & !uwp & !xbox"
    },
    "xbox": {
      "description": "Adds Xbox specific extensions to the library",
      "supports": "windows & x64 & !uwp & !xbox",
      "dependencies": [
        "ms-gdkx"
      ]
    }
  }
}