mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
test for X86 developers too
This commit is contained in:
parent
f0bfbedfb9
commit
de284588f7
1 changed files with 3 additions and 0 deletions
|
@ -4,6 +4,7 @@ set -u -e
|
|||
|
||||
APPMK=./jni/Application.mk
|
||||
XWORDS_DEBUG_ARMONLY=${XWORDS_DEBUG_ARMONLY:-""}
|
||||
XWORDS_DEBUG_X86ONLY=${XWORDS_DEBUG_X86ONLYx:-""}
|
||||
|
||||
echo "# Generated by $0; do not edit!!!" > $APPMK
|
||||
|
||||
|
@ -11,6 +12,8 @@ if [ "$1" = "release" ]; then
|
|||
echo "APP_ABI := armeabi x86" >> $APPMK
|
||||
elif [ -n "$XWORDS_DEBUG_ARMONLY" ]; then
|
||||
echo "APP_ABI := armeabi" >> $APPMK
|
||||
elif [ -n "$XWORDS_DEBUG_X86ONLY" ]; then
|
||||
echo "APP_ABI := x86" >> $APPMK
|
||||
else
|
||||
echo "APP_ABI := armeabi x86" >> $APPMK
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue