aboutsummaryrefslogtreecommitdiffstats
path: root/generate_version_h.sh
blob: fed5fa09efa8650294f582a4c5042221da397234 (plain)
1
2
3
4
5
6
7
8
9
10
#!/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\")\""