-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
50 lines (50 loc) · 1019 Bytes
/
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
{
"name": "wlang",
"targetType": "none",
"description": "The W language parser, compiler and runtime.",
"copyright": "Copyright © 2015, Dan Printzell",
"authors": ["Dan Printzell"],
"configurations": [
{
"name": "compiler",
"targetType": "executable",
"targetName": "wc",
"sourcePaths": ["compiler/source"],
"importPaths": ["compiler/source"],
"dependencies": {
"wlang:common": "*",
"wlang:ast": "*"
}
},
{
"name": "vm",
"targetType": "executable",
"targetName": "vw",
"sourcePaths": ["vm/source"],
"importPaths": ["vm/source"],
"dependencies": {
"wlang:common": "*",
"wlang:ast": "*"
}
}
],
"subPackages": [
{
"name": "common",
"targetType": "library",
"sourcePaths": ["common/source"],
"importPaths": ["common/source"],
"dependencies": {
}
},
{
"name": "ast",
"targetType": "library",
"sourcePaths": ["ast/source"],
"importPaths": ["ast/source"],
"dependencies": {
"wlang:common": "*"
}
}
]
}