-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
61 lines (61 loc) · 1.17 KB
/
dub.json
File metadata and controls
61 lines (61 loc) · 1.17 KB
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
{
"name": "dli",
"authors": [
"Héctor Barreras Almarcha @Dechcaudron"
],
"description": "A Command Line Interface library for D",
"copyright": "Copyright © 2017, Héctor Barreras Almarcha",
"license": "MIT",
"targetPath": "build",
"dependencies": {
"unit-threaded": "~>0.7.35"
},
"configurations": [
{
"name": "library",
"targetType": "library",
"versions": [
"MathExpressionSupport"
],
"dependencies": {
"arith-eval": "~>0.5.1"
},
"subConfigurations": {
"arith-eval": "library"
}
},
{
"name": "library_lite",
"targetType": "library"
},
{
"name": "demo",
"targetType": "executable",
"versions": [
"MathExpressionSupport"
],
"dependencies": {
"arith-eval": "~>0.5.0"
}
},
{
"name": "unittest",
"targetType": "executable",
"targetName": "tests",
"preBuildCommands": [
"dub run unit-threaded -c gen_ut_main -- -f build/ut.d"
],
"mainSourceFile": "build/ut.d",
"excludedSourceFiles": [
"src/demo.d"
],
"dependencies": {
"arith-eval": "~>0.5.1"
},
"subConfigurations": {
"arith-eval": "library"
}
}
],
"homepage": "https://github.com/Dechcaudron/dli"
}