-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
52 lines (52 loc) · 1.35 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
{
"name": "antlr-d",
"license": "BSD",
"copyright": "Copyright (c) 2012-2019 The ANTLR Project. All rights reserved.",
"description": "ANTLR4 runtime library",
"authors": [
"Egbert Voigt <[email protected]>",
"Mario Kröplin"
],
"buildTypes": {
"debug": {
"buildOptions": ["debugInfo"]
},
"antlr-debug": {
"buildOptions": ["debugMode", "debugInfo"]
},
"unittest": {
"buildOptions": ["unittests", "debugInfo"]
}
},
"configurations": [
{
"name": "runtime",
"sourcePaths": [
"source"
],
"targetName": "antlr-d",
"targetPath": "lib",
"targetType": "library"
},
{
"name": "unittest",
"sourcePaths": [
"unittest/complex",
"unittest/simple",
"unittest/separated_grammar"
],
"importPaths": [
"unittest/complex",
"unittest/simple",
"unittest/separated_grammar"
],
"versions": [
"AntlrUnittest"
],
"dependencies": {
"dshould": "~>1.4.3",
"silly": "~>1.1.1"
}
}
]
}