]> git.donarmstrong.com Git - lilypond.git/blob - flower/flower-version.cc
deb0b19c7c6c3d8bfeece2026694e0af0b28058c
[lilypond.git] / flower / flower-version.cc
1 #include <stdio.h>
2
3 #include "config.hh"
4
5 // static char *s = "FlowerLib " MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL MY_PATCH_LEVEL " #%d";
6 static char *s = "FlowerLib " FLOWER_VERSION " #%d";
7
8 static const int build=
9 //#include ".build"
10 0
11 ;
12
13 char const * 
14 flower_version_sz()
15 {
16   static char v[1024];
17   sprintf (v, s, build);
18   return v;
19 }