Merge pull request #884 from l3iggs/master
[Android] allow variable ABI targets
This commit is contained in:
commit
1d70ed4ff1
|
@ -3,4 +3,9 @@ ifeq ($(GLES),3)
|
||||||
else
|
else
|
||||||
APP_PLATFORM := android-9
|
APP_PLATFORM := android-9
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef TARGET_ABIS
|
||||||
APP_ABI := armeabi-v7a mips x86
|
APP_ABI := armeabi-v7a mips x86
|
||||||
|
else
|
||||||
|
APP_ABI := $(TARGET_ABIS)
|
||||||
|
endif
|
||||||
|
|
Loading…
Reference in New Issue