mirror of https://github.com/axmolengine/axmol.git
Merge pull request #12540 from samuele3hu/v3_7_test
Fix the compile error of js-template by using android-studio compile param.
This commit is contained in:
commit
0275b54b63
|
@ -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