diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-09-02 11:52:15 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-19 13:41:43 -0400 |
commit | e1923108945cdf18ef7d910b7a7946164059c94f (patch) | |
tree | 084a84e2969b78f170ac512e2fceae9450add13e /dub.sdl | |
parent | 0.11.1 (diff) |
shell.nix
Diffstat (limited to 'dub.sdl')
-rwxr-xr-x[-rw-r--r--] | dub.sdl | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -1,3 +1,4 @@ +#!/usr/bin/env dub name "spine" description "sisu document parser" homepage "http://sisudoc.org" @@ -17,11 +18,11 @@ dependency "dyaml" version="~>0.8.0" # https://code.dlan dependency "tinyendian" version="~>0.2.0" # http://code.dlang.org/packages/tinyendian https://github.com/dlang-community/tinyendian // dyaml dependency configuration "default" { targetName "spine" - postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'spine'" + #postGenerateCommands "notify-send -t 0 'D executable ready' 'spine'" } configuration "dmd" { targetName "spine-dmd" - postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'spine-dmd'" + #postGenerateCommands "notify-send -t 0 'D executable ready' 'spine-dmd'" } buildType "dmd" { dflags "-J=views" "-I=src/doc_reform" @@ -36,11 +37,11 @@ configuration "dmd-version" { dflags "-J=views" "-I=src/doc_reform" buildOptions "verbose" "optimize" targetName "spine-dmd-ver" - postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'spine-dmd-ver'" + #postGenerateCommands "notify-send -t 0 'D executable ready' 'spine-dmd-ver'" } configuration "ldc" { targetName "spine-ldc" - postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'spine-ldc'" + #postGenerateCommands "notify-send -t 0 'D executable ready' 'spine-ldc'" } buildType "ldc" { dflags "-O2" "-J=views" "-I=src/doc_reform" @@ -60,11 +61,11 @@ configuration "ldc-version" { dflags "-O2" "-J=views" "-I=src/doc_reform" buildOptions "verbose" "optimize" "inline" "releaseMode" targetName "spine-ldc-ver" - postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'spine-ldc-ver'" + #postGenerateCommands "notify-send -t 0 'D executable ready' 'spine-ldc-ver'" } configuration "gdc" { targetName "spine-gdc" - postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'spine-gdc'" + #postGenerateCommands "notify-send -t 0 'D executable ready' 'spine-gdc'" } buildType "gdc" { dflags "-O" "-J=views" "-I=src/doc_reform" @@ -82,5 +83,5 @@ configuration "gdc-version" { lflags "-lz" buildOptions "verbose" "optimize" "inline" "releaseMode" targetName "spine-gdc-ver" - postGenerateCommands "/usr/bin/notify-send -t 0 'D executable ready' 'spine-gdc-ver'" + #postGenerateCommands "notify-send -t 0 'D executable ready' 'spine-gdc-ver'" } |