-
Notifications
You must be signed in to change notification settings - Fork 6
/
dub.sdl
44 lines (34 loc) · 1.24 KB
/
dub.sdl
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
name "dentist"
description "Close assembly gaps using long-reads with focus on correctness."
authors "Arne Ludwig <[email protected]>"
copyright "Copyright © 2018, Arne Ludwig <[email protected]>"
license "MIT"
dependency "darg" path="./darg"
dependency "string-transform-d" version="~>1.0.0"
dependency "vibe-d:data" version="~>0.9.3"
dependency "dyaml" version="~>0.8.4"
targetType "executable"
mainSourceFile "source/app.d"
stringImportPaths "scripts"
buildRequirements "allowWarnings"
preBuildCommands "./update-swinfo.sh" "./update-modules.sh"
postBuildCommands "./update-config-schema.sh"
x:ddoxFilterArgs "--min-protection=Protected" \
"--ex" "dentist.swinfo" "--ex" "dentist.modules" \
"--ex" "dentist.common.binio._testdata"
configuration "default" {
buildRequirements "requireBoundsCheck" "requireContracts"
}
configuration "testing" {
versions "DentistTesting"
}
configuration "read-las-test" {
versions "NoAppMain" "ReadLasTest"
}
buildType "release" {
buildOptions /*"optimize" "inline" */
}
buildType "docs-json" {
buildOptions "syntaxOnly"
dflags "-c" "-D" "-Xfdocs.json"
}