Turned off point-and-click using build script

This commit is contained in:
Eric Teunis de Boone 2018-01-28 13:28:33 +01:00
parent 32c7e6dc9b
commit f49c85b977
1 changed files with 11 additions and 4 deletions

15
build
View File

@ -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 $@