-
Notifications
You must be signed in to change notification settings - Fork 2
/
dub.json
49 lines (49 loc) · 795 Bytes
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"authors": [
"Anton"
],
"configurations": [
{
"name": "default",
"targetType": "executable"
},
{
"name": "unittest",
"targetName": "shaders_test-test-library",
"targetType": "executable"
},
{
"dflags": [
"-vcg-ast"
],
"name": "ast",
"postBuildCommands": [
"rdmd move_vcg.d"
],
"targetType": "executable"
}
],
"dependencies": {
"bindbc-glfw": "~>1.0.0",
"bindbc-opengl": "~>1.0.0",
"fswatch": "~>0.6.0"
},
"lflags-windows": [
"/LIBPATH:bin",
"/NODEFAULTLIB:libcmt",
"/NODEFAULTLIB:libvcruntime",
"/NODEFAULTLIB:libucrt"
],
"libs": [
"lib/imgui"
],
"license": "MIT",
"name": "shaders_test",
"targetPath": "bin",
"targetType": "executable",
"versions": [
"GLFW_33",
"GL_46"
],
"workingDirectory": "bin"
}