compile.sh: allow ARCHS to be overriden

This commit is contained in:
Alibek Omarov 2019-10-09 01:49:56 +03:00
parent a692857fe8
commit 98ba50c974

View file

@ -12,7 +12,10 @@ else
echo "-- Configuring for Android SDK/NDK"
TOOLCHAIN=4.9
fi
ARCHS="armeabi-v7a armeabi x86"
if [ "$ARCHS" = "" ]; then
ARCHS="armeabi-v7a armeabi x86"
fi
API=9
ROOT="$PWD" # compile.sh must be run from root of android project sources
SUBDIRS="xash3d-fwgs hlsdk-xash3d"