-
Notifications
You must be signed in to change notification settings - Fork 13
/
_dub.json
29 lines (28 loc) · 1.1 KB
/
_dub.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
{
"name" : "erupted"
"description" : "Auto-generated D bindings for Vulkan"
"copyright" : "Copyright 2015-2016 The Khronos Group Inc.; Copyright 2016 Alex Parrill; Copyright 2018 Peter Particle"
"authors" : [ "Alex Parrill", "Peter Particle" ],
"targetType" : "sourceLibrary",
"license" : "BSD 2-clause",
"subPackages" : [
{
"name" : "devices",
"description" : "Simple Vulkan example",
"targetType" : "executable",
"sourceFiles" : [ "examples/devices.d" ],
"dependencies" : {
"erupted" : { "path": "." }
},
},
{
"name" : "layers",
"description" : "Simple Vulkan example",
"targetType" : "executable",
"sourceFiles" : [ "examples/layers.d" ],
"dependencies" : {
"erupted" : { "path": "." }
}
}
]
}