-
Notifications
You must be signed in to change notification settings - Fork 71
/
dub.json
45 lines (45 loc) · 1.02 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
{
"name": "dcd",
"description": "The D Completion Daemon is an auto-complete program for the D programming language",
"copyright": "Copyright © 2015-2020, Brian Schott",
"authors": [
"Brian Schott"
],
"license": "GPL-3.0",
"dependencies": {
":dsymbol": "*",
"libdparse": ">=0.23.0 <0.24.0",
":common": "*",
"emsi_containers": "~>0.9.0"
},
"subPackages": ["dsymbol", "common"],
"versions": ["built_with_dub"],
"configurations": [
{
"name": "library",
"targetType": "library",
"excludedSourceFiles": [
"src/dcd/client/*",
"src/dcd/server/main.d"
]
},
{
"name": "client",
"targetType": "executable",
"targetPath": "bin/",
"targetName": "dcd-client",
"excludedSourceFiles": [
"src/dcd/server/*"
]
},
{
"name": "server",
"targetType": "executable",
"targetPath": "bin/",
"targetName": "dcd-server",
"excludedSourceFiles": [
"src/dcd/client/*"
]
}
]
}