Android build: automate setting the right version number

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-03-05 17:14:33 -08:00
parent d42b7f55c4
commit a64eef7f82
3 changed files with 8 additions and 3 deletions

View file

@ -348,6 +348,12 @@ cmake $MOBILE_CMAKE \
# libcrypto - that's not helpful
sed -i -e "s/-lcrypto//g" CMakeFiles/subsurface-mobile.dir/link.txt
# set up the version number
SUBSURFACE_MOBILE_VERSION=$(grep MOBILE_VERSION_STRING ssrf-version.h | awk "{ print \$3 }" )
rm -rf android-mobile
cp -a $SUBSURFACE_SOURCE/android-mobile .
sed -i -e "s/@SUBSURFACE_MOBILE_VERSION@/$SUBSURFACE_MOBILE_VERSION/" android-mobile/AndroidManifest.xml
# now build Subsurface and use the rest of the command line arguments
make $@