From f49c85b977d2ade4234c2db70cd8473c0f4eeab0 Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Sun, 28 Jan 2018 13:28:33 +0100 Subject: [PATCH] Turned off point-and-click using build script --- build | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/build b/build index 18d289c..f5aaf4a 100755 --- a/build +++ b/build @@ -1,11 +1,18 @@ #!/bin/bash -# Build script for the tinwhistle scores +# Wrapper script for the tinwhistle scores +# +# It uses (standard) commandline options of lilypond DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" LIB=$DIR/../lib -STYLESHEET=$LIB/styles/tinwhistle.ily +STYLESHEET=$LIB/styles/tinwhistle.sly -# In case, tinwhistle.ily is included in file +# In case tinwhistle.ily is included in file +#+ add it to the search path TINWHISTLE_DIR=$LIB/tinwhistle/ -lilypond -dinclude-settings=$STYLESHEET -I $TINWHISTLE_DIR -dno-strip-output-dir $@ +# Options by this script +OPTIONS="-dno-strip-output-dir -dno-point-and-click" + +# Execute +lilypond -dinclude-settings=$STYLESHEET -I $TINWHISTLE_DIR $OPTIONS $@