Add version handling
This commit is contained in:
11
gen_version_header.sh
Executable file
11
gen_version_header.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [[ -z $1 ]]; then
|
||||
exit -1;
|
||||
fi
|
||||
|
||||
ver=`git describe --tags --always --dirty`
|
||||
echo "#ifndef _VERSION_GENERATED_H_" > $1
|
||||
echo "#define _VERSION_GENERATED_H_" >> $1
|
||||
echo "#define GIT_VERSION_STRING \"$ver\"" >> $1
|
||||
echo "#endif /* _VERSION_GENERATED_H_ */" >> $1
|
Reference in New Issue
Block a user