-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
31 lines (31 loc) · 909 Bytes
/
dub.json
File metadata and controls
31 lines (31 loc) · 909 Bytes
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
{
"name": "dvulkanbase",
"targetType": "executable",
"description": "Vulkan boilerplate",
"authors": ["Timo Wiren"],
"homepage": "http://twiren.kapsi.fi",
"license": "MIT",
"configurations": [
{
"name": "linux",
"platforms": ["linux"],
"versions": ["VK_USE_PLATFORM_XCB_KHR"],
"libs": [ "X11", "Xi", "Xrandr", "pthread", "Xxf86vm","GL", "GLU", "Xinerama", "Xcursor" ],
"dependencies": {
"bindbc-sdl": "~>0.19.0",
"erupted": ">=2.1.34",
"xlib-d": "~>0.1.1",
"xcb-d": "~>2.1.0"
}
},
{
"name": "windows",
"platforms": ["windows"],
"versions": ["VK_USE_PLATFORM_WIN32_KHR"],
"dependencies": {
"bindbc-sdl": "~>0.19.0",
"erupted": ">=2.1.34"
}
}
]
}