-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
57 lines (57 loc) · 1.57 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
{
"name": "plotd",
"description": "Plot streams of data from the command line.",
"copyright": "Copyright © 2014, Edwin van Leeuwen",
"authors": ["Edwin van Leeuwen"],
"license": "GPL-3.0",
"libs": ["cairo"],
"sourcePaths": ["source"],
"excludedSourceFiles": ["source/main.d"],
"targetPath": "bin",
"dependencies": {
"ggplotd": ">=1.1.0",
"dunit": "~>1.0.11",
"docopt": ">=0.6.1-b.4",
"color": "~>0.0.5"
},
"targetType": "library",
"configurations": [
{
"name": "default",
"targetType": "executable",
"targetName": "plotcli",
"mainSourceFile": "source/main.d"
},
{
"name": "plotcli-gtk",
"targetType": "executable",
"targetName": "plotcli",
"mainSourceFile": "source/main.d",
"subConfigurations": {
"ggplotd":"ggplotd-gtk"
},
"versions": ["plotcliGTK"]
},
{
"name": "examples",
"targetType": "executable",
"mainSourceFile": "examples/generator.d",
"targetName": "generator",
"dependencies": {
"dstats": "~>1.0.3"
}
},
{
"name": "unittest",
"targetType": "library"
},
{
"name": "unittest-gtk",
"targetType": "library",
"subConfigurations": {
"ggplotd":"ggplotd-gtk"
},
"versions": ["plotcliGTK"]
}
]
}