aboutsummaryrefslogtreecommitdiffstats
path: root/generate_version_h.sh
blob: 75df5a2a4f5dba0b85124061122a67185f6debe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

VERSION=`git describe --abbrev=0`
HASH=`git show --format="%h" --no-patch master`
BRANCH=`git rev-parse --abbrev-ref HEAD`

echo "#define VERSION \"$VERSION\""
echo "#define HASH \"$HASH\""
echo "#define BRANCH \"$BRANCH\""
echo "#define VERSION_FULL VERSION\"-\"HASH\" (\"BRANCH\")\""
echo "char* version();"