mirror of https://github.com/axmolengine/axmol.git
Fix the compile error of js-template by using android-studio compile param.
This commit is contained in:
parent
b963b63701
commit
3a654b4615
|
@ -5,6 +5,10 @@ LOCAL_MODULE := cocos_ui_static
|
|||
|
||||
LOCAL_MODULE_FILENAME := libui
|
||||
|
||||
ifeq ($(USE_ARM_MODE),1)
|
||||
LOCAL_ARM_MODE := arm
|
||||
endif
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
UIWidget.cpp \
|
||||
UILayout.cpp \
|
||||
|
|
|
@ -5,6 +5,10 @@ LOCAL_MODULE := cocos_extension_static
|
|||
|
||||
LOCAL_MODULE_FILENAME := libextension
|
||||
|
||||
ifeq ($(USE_ARM_MODE),1)
|
||||
LOCAL_ARM_MODE := arm
|
||||
endif
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
assets-manager/AssetsManager.cpp \
|
||||
assets-manager/Downloader.cpp \
|
||||
|
|
Loading…
Reference in New Issue