]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-version.cc
release: 0.1.57
[lilypond.git] / lily / lily-version.cc
1 #include <stdio.h>
2
3 #include "config.hh"
4 #include "version.hh"
5
6  #define VERSION_SZ  MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL MY_PATCH_LEVEL
7
8 //#define VERSION_SZ TOPLEVEL_VERSION
9 //#define VERSION_SZ "version"
10 static char *s = "GNU LilyPond " VERSION_SZ ;
11
12
13 char const *
14 lily_version_number_sz()
15 {
16   return VERSION_SZ;
17 }
18
19 char const * 
20 lily_version_sz()
21 {
22         return s;
23 }