mirror of https://github.com/axmolengine/axmol.git
29 lines
565 B
Makefile
29 lines
565 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := cocos2dlua_shared
|
|
|
|
LOCAL_MODULE_FILENAME := libcocos2dlua
|
|
|
|
LOCAL_SRC_FILES := \
|
|
../../Classes/AppDelegate.cpp \
|
|
hellolua/main.cpp
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../Classes
|
|
|
|
# _COCOS_HEADER_ANDROID_BEGIN
|
|
# _COCOS_HEADER_ANDROID_END
|
|
|
|
LOCAL_STATIC_LIBRARIES := cocos2d_lua_static
|
|
|
|
# _COCOS_LIB_ANDROID_BEGIN
|
|
# _COCOS_LIB_ANDROID_END
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
$(call import-module,scripting/lua-bindings/proj.android)
|
|
|
|
# _COCOS_LIB_IMPORT_ANDROID_BEGIN
|
|
# _COCOS_LIB_IMPORT_ANDROID_END
|