forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcpkg.json
46 lines (46 loc) · 1.04 KB
/
vcpkg.json
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
{
"name": "directxmesh",
"version-date": "2023-06-13",
"description": "DirectXMesh geometry processing library",
"homepage": "https://github.com/Microsoft/DirectXMesh",
"documentation": "https://github.com/microsoft/DirectXMesh/wiki",
"license": "MIT",
"supports": "windows | 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
}
],
"features": {
"dx12": {
"description": "Build with DirectX12 support for Windows 10/Windows 11",
"dependencies": [
{
"name": "directx-headers",
"platform": "windows & !xbox"
}
]
},
"spectre": {
"description": "Build Spectre-mitigated library"
},
"tools": {
"description": "meshconvert command-line tool",
"supports": "windows & !uwp & !xbox"
}
}
}