]> git.donarmstrong.com Git - lilypond.git/blob - flower/flower-version.cc
release: 0.0.42.pre3
[lilypond.git] / flower / flower-version.cc
1 #include "version.hh"   // urg
2 #include <stdio.h>
3
4 static char *s = "FlowerLib " 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 flower_version_sz()
12 {
13     static char v[1024];
14     sprintf(v, s, build);
15     return v;
16 }