blob: 5b60fe057e88e799b6b3f5455c9300b25f1159b4 (
plain)
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
|
name "doc-reform"
description "sisu document parser"
homepage "http://sisudoc.org"
authors "Ralph Amissah"
copyright "Copyright (C) 2016 - 2019 Ralph Amissah"
license "AGPL-3.0+"
targetPath "./bin"
#sourcePath "./src/doc_reform"
stringImportPaths "./views"
buildRequirements "allowWarnings"
targetType "executable"
platforms "posix"
dependency "archive" version="~>0.6.0" # http://code.dlang.org/packages/archive https://github.com/rcythr/archive
dependency "d2sqlite3" version="~>0.16.2" # https://code.dlang.org/packages/d2sqlite3 http://biozic.github.io/d2sqlite3/d2sqlite3.html
subconfiguration "d2sqlite3" "all-included"
dependency "imageformats" version="~>7.0.0" # https://code.dlang.org/packages/imageformats https://github.com/lgvz/imageformats
dependency "toml" version="~>1.0.0-rc.3" # https://code.dlang.org/packages/toml https://github.com/toml-lang/toml/wiki
dependency "toml:json" version="~>1.0.0-rc.3"
configuration "default" {
targetName "doc-reform"
postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'doc-reform'"
}
configuration "dmd" {
targetName "doc-reform-dmd"
postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'doc-reform-dmd'"
}
buildType "dmd" {
dflags "-J=views" "-I=src/doc_reform"
buildOptions "verbose" "inline"
buildRequirements "allowWarnings"
}
buildType "dmd-release" {
dflags "-J=views" "-I=src/doc_reform"
buildOptions "verbose" "releaseMode" "optimize" "inline"
}
configuration "dmd-version" {
targetName "doc-reform-dmd-ver"
postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'doc-reform-dmd-ver'"
}
configuration "ldc" {
targetName "doc-reform-ldc"
postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'doc-reform-ldc'"
}
buildType "ldc" {
dflags "-O2" "-J=views" "-I=src/doc_reform"
buildOptions "verbose" "optimize" "inline"
buildRequirements "allowWarnings"
}
buildType "ldc-release" {
dflags "-O2" "-J=views" "-I=src/doc_reform"
buildOptions "verbose" "optimize" "inline" "releaseMode"
}
configuration "ldc-version" {
targetName "doc-reform-ldc-ver"
postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'doc-reform-ldc-ver'"
}
configuration "gdc" {
targetName "doc-reform-gdc"
postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'doc-reform-gdc'"
}
buildType "gdc" {
dflags "-O2" "-J=views" "-I=src/doc_reform"
lflags "-lz"
buildOptions "optimize" "inline"
buildRequirements "allowWarnings"
}
buildType "gdc-release" {
dflags "-O2" "-J=views" "-I=src/doc_reform"
lflags "-lz"
buildOptions "verbose" "optimize" "inline" "releaseMode"
}
configuration "gdc-version" {
targetName "doc-reform-gdc-ver"
postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'doc-reform-gdc-ver'"
}
|