-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
106 lines (106 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "f3lcites",
"description": "Store and recall cites via a web interface or API.",
"copyright": "Copyright © 2016-2018, Oliver Rümpelein, F3L-Team",
"authors": [
"Oliver Rümpelein",
"F3L-Team"
],
"license": "MIT",
"dependencies": {
"d2sqlite3": "~>0.19.1",
"vibe-d:http": "~>0.9.0",
"vibe-d:core": "~>0.9.0",
"vibe-d:web": "~>0.9.0",
"vibe-d:tls": "~>0.9.0",
"poodinis": "~>8.0.3"
},
"subConfigurations": {
"vibe-d:tls": "openssl-1.1"
},
"targetType": "executable",
"buildTypes": {
"plain": {
"libs": [
"sqlite3"
],
"lflags": [
"-Llibsqlite3"
]
},
"debug": {
"libs": [
"dl"
]
},
"release": {
"libs": [
"sqlite3"
],
"lflags": [
"-Llibsqlite3"
]
},
"profile": {
"libs": [
"sqlite3"
],
"lflags": [
"-Llibsqlite3"
]
},
"cov": {
"libs": [
"sqlite3"
],
"lflags": [
"-Llibsqlite3"
]
}
},
"stringImportPaths": [
"resources/views",
"resources/templates",
"resources/static"
],
"configurations": [
{
"name": "executable"
},
{
"name": "unittest",
"targetType": "executable",
"preBuildCommands": [
"dub run unit-threaded -c gen_ut_main -- -f bin/ut.d"
],
"mainSourceFile": "bin/ut.d",
"excludedSourceFiles": [
"source/app.d"
],
"sourcePaths": [
"test"
],
"dependencies": {
"unit-threaded": "~>0.7.11"
},
"versions": [
"unitUnthreaded"
]
},
{
"name": "generateCss",
"preBuildCommands": [
"sassc -t compressed resources/templates/style.scss resources/static/cites.css"
],
"platforms": [
"linux"
],
"dflags-ldc": [
"-flto=thin",
"-O2",
"-linker=gold",
"-gcc=clang"
]
}
]
}