forked from jmcabo/dunit
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdub.json
More file actions
30 lines (30 loc) · 714 Bytes
/
Copy pathdub.json
File metadata and controls
30 lines (30 loc) · 714 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
{
"name": "d-unit",
"description": "xUnit Testing Framework for D",
"copyright": "Copyright © 2017, Mario Kröplin",
"authors": ["Juan Manuel Cabo", "Mario Kröplin"],
"license" : "BSL-1.0",
"dependencies": {
"dshould": {
"optional": true,
"version": ">=1.3.2"
},
"undead": ">=1.1.1"
},
"buildTypes": {
"strict": {
"buildOptions": ["deprecationErrors", "warningsAsErrors"]
}
},
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"mainSourceFile": "test/main.d"
}
]
}