mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Adnroid buildfix, we have too many makefiles.
This commit is contained in:
parent
48118895c3
commit
26f2301ae4
52
android/git-version-gen.sh
Executable file
52
android/git-version-gen.sh
Executable file
@ -0,0 +1,52 @@
|
||||
#!/bin/bash
|
||||
## Copyright (c) 2012- PPSSPP Project.
|
||||
|
||||
## This program is free software: you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published by
|
||||
## the Free Software Foundation, version 2.0 or later versions.
|
||||
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License 2.0 for more details.
|
||||
|
||||
## A copy of the GPL 2.0 should have been included with the program.
|
||||
## If not, see http://www.gnu.org/licenses/
|
||||
|
||||
## Official git repository and contact information can be found at
|
||||
## https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
GIT_VERSION_FILE=$(dirname $0)/../git-version.cpp
|
||||
|
||||
if [ -e "$GIT_VERSION_FILE" ]; then
|
||||
# Skip updating the file if PPSSPP_GIT_VERSION_NO_UPDATE is 1.
|
||||
results=$(grep '^#define PPSSPP_GIT_VERSION_NO_UPDATE 1' "$GIT_VERSION_FILE")
|
||||
if [ "$results" != "" ]; then
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
GIT_VERSION=$(git describe --always)
|
||||
if [ "$GIT_VERSION" == "" ]; then
|
||||
echo "Unable to update git-version.cpp, git not on path." 1>&2
|
||||
|
||||
echo "// This is a generated file." > "$GIT_VERSION_FILE"
|
||||
echo >> "$GIT_VERSION_FILE"
|
||||
echo 'const char *PPSSPP_GIT_VERSION = "unknown";' >> "$GIT_VERSION_FILE"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Don't modify the file if it already has the current version.
|
||||
if [ -e "$GIT_VERSION_FILE" ]; then
|
||||
results=$(grep "$GIT_VERSION" "$GIT_VERSION_FILE")
|
||||
if [ "$results" != "" ]; then
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "// This is a generated file." > "$GIT_VERSION_FILE"
|
||||
echo >> "$GIT_VERSION_FILE"
|
||||
echo 'const char *PPSSPP_GIT_VERSION = "'"$GIT_VERSION"'";' >> "$GIT_VERSION_FILE"
|
||||
echo >> "$GIT_VERSION_FILE"
|
||||
echo "// If you don't want this file to update/recompile, change to 1." >> "$GIT_VERSION_FILE"
|
||||
echo "#define PPSSPP_GIT_VERSION_NO_UPDATE 0" >> "$GIT_VERSION_FILE"
|
@ -195,3 +195,6 @@ include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
$(call import-module,libzip)
|
||||
$(call import-module,native)
|
||||
|
||||
jni/$(SRC)/git-version.cpp:
|
||||
./git-version-gen.sh
|
||||
|
Loading…
Reference in New Issue
Block a user