-
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) · 1.2 KB
/
dub.json
File metadata and controls
27 lines (27 loc) · 1.2 KB
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": "cppconv",
"description": "Converter for C/C++ code to D",
"authors": ["Tim Schendekehl"],
"license": "BSL-1.0",
"targetType": "executable",
"dependencies": {
"dparsergen:core": "~>0.1.2",
"dparsergen:generator": "~>0.1.2"
},
"toolchainRequirements": {
"frontend": ">=2.108"
},
"sourceFiles": [
"src/cppconv/grammarcpp.d",
"src/cppconv/grammarcpp_lexer.d",
"src/cppconv/grammarcpreproc.d",
"src/cppconv/grammarcpreproc_lexer.d",
"src/cppconv/grammartreematching.d",
"src/cppconv/grammartreematching_lexer.d",
],
"preBuildCommands": [
"\"$DUB\" run dparsergen:generator -- src/cppconv/grammarcpreproc.ebnf --package cppconv -o src/cppconv/grammarcpreproc.d --lexer src/cppconv/grammarcpreproc_lexer.d",
"\"$DUB\" run dparsergen:generator -- src/cppconv/grammarcpp.ebnf --package cppconv --glr --optempty --glr-global-cache -o src/cppconv/grammarcpp.d --lexer src/cppconv/grammarcpp_lexer.d",
"\"$DUB\" run dparsergen:generator -- src/cppconv/grammartreematching.ebnf --package cppconv -o src/cppconv/grammartreematching.d --lexer src/cppconv/grammartreematching_lexer.d"
]
}