-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
48 lines (48 loc) · 1021 Bytes
/
dub.json
File metadata and controls
48 lines (48 loc) · 1021 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "rpp",
"sourcePaths": ["source"],
"copyright": "Copyright © 2016, Robert F. Rau II",
"authors": ["Rob Rau"],
"subPackages": [
"./examples/example_0",
"./examples/example_1",
"./examples/example_2",
"./examples/example_3",
"./examples/example_4",
"./examples/example_5",
"./source/rpp/server/plugins/matlab"
],
"configurations": [
{
"excludedSourceFiles": [
"source/rpp/server/*"
],
"name": "client",
"targetType": "library",
"buildTypes": {
"debug": {
"buildOptions": ["debugMode", "debugInfo"],
"dflags": ["-fPIC"]
}
}
},
{
"excludedSourceFiles": [
"source/rpp/client/*",
"source/rpp/server/plugins/*",
"source/package.d"
],
"targetName": "rpp-server",
"name": "server",
"targetType": "executable",
"mainSourceFile": "source/rpp/server/rps.d",
"buildTypes": {
"debug": {
"buildOptions": ["debugMode", "debugInfo"]
}
},
"dflags": ["-defaultlib=libphobos2.so"],
"lflags": ["-ldl"]
}
]
}