Turned off point-and-click using build script
This commit is contained in:
parent
32c7e6dc9b
commit
f49c85b977
1 changed files with 11 additions and 4 deletions
15
build
15
build
|
@ -1,11 +1,18 @@
|
||||||
#!/bin/bash
|
#!/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 )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
LIB=$DIR/../lib
|
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/
|
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 $@
|
||||||
|
|
Loading…
Reference in a new issue