-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
27 lines (27 loc) · 754 Bytes
/
dub.json
File metadata and controls
27 lines (27 loc) · 754 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
{
"name": "example_python",
"description": "Example Python for DParserGen",
"authors": ["Tim Schendekehl"],
"license": "BSL-1.0",
"targetType": "executable",
"dependencies": {
"dparsergen:core": {
"version": "*",
"path": "../.."
},
"dparsergen:generator": {
"version": "*",
"path": "../.."
}
},
"sourceFiles": [
"testpython.d",
"grammarpython.d",
"grammarpython_lexer.d"
],
"lflags-windows": ["/STACK:10485760"],
"preBuildCommands": [
"\"$DUB\" run --root=../../ :generator -- grammarpython.ebnf -o grammarpython.d --lexer grammarpython_lexer.d"
],
"buildRequirements": ["allowWarnings"]
}