lilypond-1.3.7
[lilypond.git] / lily / lily-version.cc
blob909a9b95a5481dbbde04f2764bb5f28fb084d16e
1 /*
2 lily-version.cc -- implement version strings
4 source file of the GNU LilyPond music typesetter
6 (c) 1999 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #include "config.h"
10 #include "version.hh"
11 #include "lily-version.hh"
13 #define VERSION MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL "." MY_PATCH_LEVEL
15 String
16 version_str ()
18 String str = VERSION;
19 return str;
22 String
23 gnu_lilypond_str ()
25 String str = "GNU LilyPond";
26 return str;
29 String
30 gnu_lilypond_version_str ()
32 String str = gnu_lilypond_str () + " " + version_str ();
33 return str;