aboutsummaryrefslogtreecommitdiffstats
path: root/IGetAndroid/app/cmake/get_version.sh
diff options
context:
space:
mode:
Diffstat (limited to 'IGetAndroid/app/cmake/get_version.sh')
-rwxr-xr-xIGetAndroid/app/cmake/get_version.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/IGetAndroid/app/cmake/get_version.sh b/IGetAndroid/app/cmake/get_version.sh
new file mode 100755
index 00000000..34c6ddb2
--- /dev/null
+++ b/IGetAndroid/app/cmake/get_version.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+DATE_VERSION=`date "+%Y%m%d"`
+
+if [ ! -d $1 ]; then
+ echo 0.$DATE_VERSION
+ exit
+fi
+
+if [ -f $1/BASE_VERSION ]; then
+ BASE_VERSION=`cat $1/BASE_VERSION`.
+fi
+
+GIT=`which git`
+
+if test -x $GIT -a -f $1/.git/config; then
+ GIT_VERSION=.`git -C $1 rev-parse HEAD | cut -c 1-8`
+fi
+
+echo $BASE_VERSION$DATE_VERSION$GIT_VERSION