forked from dsimcha/parallel_algorithm
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdub.json
More file actions
28 lines (26 loc) · 722 Bytes
/
dub.json
File metadata and controls
28 lines (26 loc) · 722 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
{
"name": "parallel-algorithms",
"authors": ["David Simcha"],
"configurations": [
{
"name": "lib",
"targetType": "library"
},
{
"name": "benchmark",
"targetType": "executable",
"versions": ["Benchmark"]
}
],
"buildTypes": {
"DSddox": {
"buildOptions": ["syntaxOnly"],
"dflags": ["-c", "-Df__dummy.html", "-Xfdocs.json"],
"postBuildCommands": [
"rm -rf site/api",
"ddox filter --min-protection=Protected docs.json",
"ddox generate-html --navigation-type=ModuleTree docs.json site/api"
]
}
}
}