-
Notifications
You must be signed in to change notification settings - Fork 1
/
vcpkg.json
57 lines (57 loc) · 1.16 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
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "cyanshaderlib",
"license": "MPL-2.0",
"version": "1.0.0",
"port-version": 0,
"dependencies": [
"glew",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"overrides": [
{
"name": "glew",
"version": "2.2.0"
},
{
"name": "glfw3",
"version": "3.3.8#1"
}
],
"builtin-baseline": "e8bbe813151e45077fa70887b1f87ccce514701a",
"$default-features-explanation": "glfw3, stb and glm are required for this library's tests, you won't need them otherwise",
"default-features": [ "glfw3", "glm", "stb" ],
"features": {
"glfw3": {
"description": "The glfw3 windowing API",
"dependencies": [
{
"name": "glfw3"
}
]
},
"glm": {
"description": "The glm library",
"dependencies": [
{
"name": "glm"
}
]
},
"stb": {
"description": "The stb library",
"dependencies": [
{
"name": "stb"
}
]
}
}
}