repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.3.100
[lilypond.git]
/
flower
/
lib
/
flower-version.cc
blob
83a69c0cef8d6063f63d8efab017a1f4c4cac9f0
1
#include
"../out/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
"../out/.build"
8
;
9
10
const char
*
11
flower_version_sz
()
12
{
13
static char
v
[
1024
];
14
sprintf
(
v
,
s
,
build
);
15
return
v
;
16
}