forked from openblack/openblack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcpkg.json
48 lines (46 loc) · 1.13 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
{
"name": "openblack",
"version-string": "0.0.1-dev",
"dependencies": [
{
"name": "sdl2",
"default-features": true,
"platform": "!linux"
},
{
"name": "sdl2",
"default-features": false,
"features": [ "x11", "wayland" ],
"platform": "linux"
},
"imgui",
"spdlog",
"glm",
"stb",
"entt",
"cxxopts",
"openal-soft",
"drlibs",
{
"name": "bgfx",
"default-features": false,
"features": [ "tools", "multithreaded" ],
"host": true,
"$reason": "Don't want to build shaderc on non-native platforms so they are built on the host config."
},
{
"name": "bgfx",
"default-features": false,
"platform": "emscripten"
},
{
"name": "bgfx",
"default-features": false,
"features": [ "multithreaded" ],
"platform": "!emscripten"
},
"bullet3",
"minizip",
"gtest"
]
}