]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-version.cc
release: 1.3.131
[lilypond.git] / lily / lily-version.cc
1 /*
2   lily-version.cc -- implement version strings
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1999--2001 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "config.h"
10 #include "version.hh"
11 #include "lily-version.hh"
12
13 #define VERSION MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL "." MY_PATCH_LEVEL
14
15 String
16 version_str ()
17 {
18   String str = VERSION;
19   return str;
20 }
21
22 String 
23 gnu_lilypond_str ()
24 {
25   String str = "GNU LilyPond";
26   return str;
27 }
28
29 String 
30 gnu_lilypond_version_str ()
31 {
32   String str = gnu_lilypond_str () + " " + version_str ();
33   return str;
34 }
35