-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvcpkg.json
More file actions
96 lines (96 loc) · 2.57 KB
/
vcpkg.json
File metadata and controls
96 lines (96 loc) · 2.57 KB
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
93
94
95
96
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "sgl",
"version": "0.1.0",
"dependencies": [
"boost-core",
"boost-algorithm",
"boost-filesystem",
"boost-locale",
"boost-spirit",
{
"name": "boost-interprocess",
"platform": "windows"
},
"libpng",
"tinyxml2",
"glew",
"glm",
{
"name": "libarchive",
"default-features": true,
"features": [ "bzip2", "lz4", "lzma", "zstd" ]
},
"vulkan",
"vulkan-headers",
"shaderc",
"opencl",
"tbb"
],
"default-features": [
"sdl3"
],
"features": {
"sdl2": {
"description": "SDL2 backend support.",
"dependencies": [
{
"name": "sdl2",
"features": [ "vulkan", "x11", "wayland" ],
"platform": "linux"
},
{
"name": "sdl2",
"features": [ "vulkan" ],
"platform": "!linux"
},
{
"name": "dbus",
"default-features": false,
"features": [],
"platform": "linux"
},
"sdl2-image"
]
},
"sdl3": {
"description": "SDL3 backend support.",
"dependencies": [
{
"name": "sdl3",
"features": [ "vulkan", "x11", "wayland" ],
"platform": "linux"
},
{
"name": "sdl3",
"features": [ "vulkan" ],
"platform": "!linux"
},
{
"name": "dbus",
"default-features": false,
"features": [],
"platform": "linux"
}
]
},
"glfw3": {
"description": "GLFW3 backend support.",
"dependencies": [
"glfw3"
]
},
"tbb": {
"description": "Use TBB instead of OpenMP for multi-threading",
"dependencies": [
"tbb"
]
},
"d3d12": {
"description": "Build with Direct3D 12 support",
"dependencies": [
"directx-headers", "directx-dxc"
]
}
}
}