-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
44 lines (44 loc) · 1 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
{
"authors": [
"Artha"
],
"copyright": "Copyright © 2020, Artha",
"description": "A collection of parsers and serializers",
"license": "BSL-1.0",
"name": "rcdata",
"targetType": "library",
"targetPath": "build",
"buildTypes": {
"unittest": {
"sourcePaths": ["source", "tests"],
"buildOptions": ["unittests", "debugMode", "debugInfo"],
"dflags": ["-preview=dip1000"]
}
},
"subPackages": [
{
"name": "json",
"sourcePaths": [],
"sourceFiles": ["source/rcdata/json.d", "source/rcdata/utils.d"],
"importPaths": ["source"],
"targetType": "library",
"targetPath": "build"
},
{
"name": "bin",
"sourcePaths": [],
"sourceFiles": ["source/rcdata/bin.d", "source/rcdata/utils.d"],
"importPaths": ["source"],
"targetType": "library",
"targetPath": "build"
},
{
"name": "parser",
"sourcePaths": [],
"sourceFiles": ["source/rcdata/parser.d", "source/rcdata/utils.d"],
"importPaths": ["source"],
"targetType": "library",
"targetPath": "build"
}
]
}