-
Notifications
You must be signed in to change notification settings - Fork 20
/
dub.json
33 lines (33 loc) · 947 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
{
"name": "drepl",
"description": "A D interpreter.",
"copyright": "Copyright © 2014-2016, DREPL team",
"license": "BSL-1.0",
"authors": ["Martin Nowak"],
"lflags-linux-dmd": ["-l:libphobos2.so"],
"lflags-linux-ldc": ["-l:libphobos2-ldc-shared.so", "-l:libdruntime-ldc-shared.so"],
"lflags-linux": ["-ldl"],
"targetPath": "bin/",
"configurations": [
{
"name": "console",
"mainSourceFile": "src/console.d",
"dependencies": {
"linenoise": "~>1.1.0"
},
"targetType": "executable",
"subConfigurations": {
"linenoise": "vendored"
}
},
{
"name": "library",
"excludedSourceFiles": ["src/console.d"],
"targetType": "library",
},
],
"dependencies": {
"colorize": "~>1.0.5",
"libdparse": "~>0.17.0"
},
}