]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-version.cc
release: 0.1.9
[lilypond.git] / lily / lily-version.cc
1 #include "version.hh"
2 #include <stdio.h>
3
4 static char *s = "GNU 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];  // ugh
14   sprintf (v, s, build);
15   return v;
16 }