-
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) · 740 Bytes
/
dub.json
File metadata and controls
31 lines (31 loc) · 740 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": "valhalla_window",
"description": "A GLFW wrapper for GLFWwindow in D",
"importPaths": ["source"],
"sourcePaths": ["source"],
"targetPath": "bin",
"license": "MIT",
"copyright": "Copyright (C) 2021 ValhalaLib",
"targetType": "library",
"dependencies": {
"bindbc-glfw": "~>0.10.1"
},
"subConfigurations": {
"bindbc-glfw": "static"
},
"libs": ["glfw3"],
"versions": ["GLFW_33"],
"configurations": [
{
"name": "default"
},
{
"name": "unittest",
"targetType": "autodetect",
"dependencies": {
"aurorafw:unit": "0.0.1-alpha.4"
},
"versions": ["vwindow_unittest"]
}
]
}