]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-version.cc
release: 0.0.42.pre3
[lilypond.git] / lily / lily-version.cc
1 #include "version.hh"
2 #include <stdio.h>
3
4 static char *s = "LilyPond " MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL MY_PATCH_LEVEL " #%d";
5
6 static const int build=
7 #include ".build"
8 ;
9
10 char const * 
11 lily_version_sz()
12 {
13     static char v[1024];
14     sprintf(v, s, build);
15     return v;
16 }