forked from DlangScience/scid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
23 lines (22 loc) · 795 Bytes
/
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
{
"name": "scid",
"libs": ["lapack","blas"],
"targetType": "library",
"homepage": "https://github.com/DlangScience/scid",
"description": "A collection of numerical routines and bindings",
"copyright": "Copyright (c) 2009-2015, Lars T. Kyllingstad.",
"authors": ["Lars Tandle Kyllingstad"],
"license": "BSL-1.0",
"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",
"rm __dummy.html docs.json"
]
}
}
}