-
Notifications
You must be signed in to change notification settings - Fork 55
/
dub.json
57 lines (57 loc) · 1.2 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": "sdc",
"description": "The snazzy D compiler. Currently only sdfmt (sdc:sdfmt) and its dependencies are available via dub.",
"license": "MIT",
"targetType": "none",
"subPackages": [
{
"name": "sdfmt",
"targetType": "executable",
"targetPath": "bin",
"targetName": "sdfmt",
"mainSourceFile": "src/driver/sdfmt.d",
"sourcePaths": [],
"dependencies": {
"sdc:format": { "version": "*" },
"sdc:config": { "version": "*" }
}
},
{
"name": "format",
"targetType": "library",
"targetPath": "lib",
"targetName": "format",
"sourcePaths": ["src/format/"],
"dependencies": {
"sdc:source": { "version": "*" }
}
},
{
"name": "config",
"targetType": "library",
"targetPath": "lib",
"targetName": "config",
"sourcePaths": ["src/config/"],
"dependencies": {
"sdc:source": { "version": "*" }
}
},
{
"name": "source",
"targetType": "library",
"targetPath": "lib",
"targetName": "source",
"sourcePaths": ["src/source/"],
"dependencies": {
"sdc:util": { "version": "*" }
}
},
{
"name": "util",
"targetType": "library",
"targetPath": "lib",
"targetName": "util",
"sourcePaths": ["src/util/"]
}
]
}