-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdub.json
90 lines (90 loc) · 1.95 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "dpq2",
"description": "Medium-level binding to the PostgreSQL database",
"homepage": "https://github.com/denizzzka/dpq2",
"license": "Boost",
"authors": [
"Denis Feklushkin", "Anton Gushcha"
],
"targetPath": "bin",
"dependencies": {
"derelict-pq": "~>4.0.0",
"vibe-serialization": "~>1.0.4",
"money": "~>3.0.2"
},
"targetType": "sourceLibrary",
"libs-windows": ["ws2_32"],
"-ddoxTool": "scod",
"configurations": [
{
"name": "static",
"versions": ["Dpq2_Static"],
"subConfigurations": {
"derelict-pq": "derelict-pq-static"
},
"libs": ["pq"]
},
{
"name": "dynamic-unmanaged",
"versions": ["Dpq2_Static"],
"subConfigurations": {
"derelict-pq": "derelict-pq-dynamic"
}
},
{
"name": "dynamic",
"versions": ["Dpq2_Dynamic"],
"subConfigurations": {
"derelict-pq": "derelict-pq-dynamic"
}
}
],
"subPackages": [
{
"name": "integration_tests",
"targetType": "executable",
"dflags-dmd": ["-preview=in"],
"dependencies":
{
"dpq2": { "version": "*", "dflags-dmd": ["-preview=in"] },
"vibe-serialization": { "version": "*", "dflags-dmd": ["-preview=in"] },
"gfm:math": "~>8.0.6"
},
"configurations": [
{
"name": "dynamic",
"subConfigurations": {
"dpq2": "dynamic"
}
},
{
"name": "dynamic-unmanaged",
"versions": ["Test_Dynamic_Unmanaged"],
"subConfigurations": {
"derelict-pq": "derelict-pq-dynamic",
"dpq2": "dynamic-unmanaged"
}
},
{
"name": "static",
"subConfigurations": {
"dpq2": "static"
}
}
],
"sourcePaths": [ "integration_tests" ],
"versions": ["integration_tests"]
},
{
"name": "example",
"targetType": "executable",
"dflags": ["-preview=in"],
"dependencies":
{
"dpq2": { "version": "*", "dflags": ["-preview=in"] },
"vibe-serialization": { "version": "*", "dflags": ["-preview=in"] },
},
"sourcePaths": [ "example" ]
}
]
}