-
Notifications
You must be signed in to change notification settings - Fork 4
/
vcpkg.json
47 lines (47 loc) · 1015 Bytes
/
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
{
"name": "blackbox",
"version-string": "0.4.4",
"description": "Game engine pet project",
"homepage": "https://github.com/fromasmtodisasm/BlackBox",
"supports": "windows",
"dependencies": [
"assimp",
"bullet3",
"crc32c",
"dxsdk-d3dx",
"freeimage",
"freetype",
"getopt",
"glm",
"libzip",
"libzippp",
"lua",
"sdl2",
{
"name": "sdl2-mixer",
"features": [
"mpg123",
"libvorbis"
]
},
"sdl2-net",
"stb",
"zlib",
"tinyxml2"
],
"default-features": [ "d3d11", "release-console", "static-linking" ],
"features": {
"d3d11": {
"description": "Using d3d11 rendering backend"
},
"release-console": {
"description": "Using d3d11 rendering backend"
},
"static-linking": {
"description": "Link all Engine modules as static libs to single exe"
},
"static-linking-with-dll-game": {
"description": "Build game as DLL in a monolithic Engine build"
}
}
}