Fix potential git-branch issue when using colors
[opus_libre.git] / main.ly
blobab052a538233d268311bd9d42cb18cf0e454a2ac
1 %------------------------------------------------------------------%
2 % opus_libre -- main.ly %
3 % %
4 % (c) 2008-2010 Valentin Villenave <valentin@villenave.net> %
5 % %
6 % opus_libre is a free framework for GNU LilyPond: you may %
7 % redistribute it and/or modify it under the terms of the GNU %
8 % General Public License, version 3 or later: gnu.org/licenses %
9 % %
10 %------------------------------------------------------------------%
12 % Entry point for scores compilation.
13 \version "2.13.35"
15 %%%%%%%%%%%%%%%%%%%%%%%% Language selection %%%%%%%%%%%%%%%%%%%%%%%%
17 %% Source code language (see locale/ ) ----------------------------%
18 input = "en"
20 %% Edition localisation (if different) ----------------------------%
21 %edition = "fr"
23 %%%%%%%%%%%%%%%%%%%%%%%%%% Score selection %%%%%%%%%%%%%%%%%%%%%%%%%
25 %% Source code directory (see scores/ ) ---------------------------%
26 scores = "free"
28 %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Optional %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30 %% Skeleton (see etc/skel/ ) --------------------------------------%
31 skel = "song"
33 %% Graphic theme (see share/themes/ ) -----------------------------%
34 theme = "default"
36 structure = #'("")
38 %lyricsSuffix = "Texte"
40 %%%%%%%%%%%%%%%%%%%%%%%%%%% Main include %%%%%%%%%%%%%%%%%%%%%%%%%%%
42 %% Automatic functions inclusion, do not edit ---------------------%
43 \include "lib/include.ly"
45 %% Select edition or instrument -----------------------------------%
47 % (e.g. "fullscore", "pianoscore" or any instrument name)
48 \make #"all"
50 %%-----------------------------------------------------------------%