-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdub.json
46 lines (46 loc) · 1.34 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
{
"name": "mecca",
"importPaths": ["src"],
"sourcePaths": ["src"],
"dflags" : ["-dip25"],
"description" : "Mecca - Weka's reactor and infrastructure library",
"copyright": "Copyright © 2017-2018, Weka.IO Ltd.",
"license": "Boost",
"versions-osx": ["Darwin", "Kqueue"],
"dependencies" : {},
"configurations": [
{
"name": "mecca-lib",
"targetType": "library",
"targetName": "mecca"
},
{
"name": "mecca-ut",
"buildOptions": ["unittests"],
"mainSourceFile": "ut/main.d",
"targetType": "executable",
"targetName": "mecca-ut"
},
{
"name": "lordcmdr",
"targetType": "executable",
"importPaths": ["examples"],
"sourcePaths": ["examples/lordcmdr"],
"targetName": "lordcmdr"
},
{
"name": "sleeper",
"targetType": "executable",
"importPaths": ["examples"],
"sourcePaths": ["examples/sleeper"],
"targetName": "sleeper"
},
{
"name": "echo-server",
"targetType": "executable",
"importPaths": ["examples"],
"sourcePaths": ["examples/echo-server"],
"targetName": "echo-server"
}
]
}