lilypond-1.3.67
[lilypond.git] / lily / lily-version.cc
blob6da4880b58d744d929429f19edf05378ffc72031
1 /*
2 lily-version.cc -- implement version strings
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2000 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;