mirror of https://github.com/axmolengine/axmol.git
27 lines
696 B
Makefile
27 lines
696 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/protobuf-lite \
|
|
$(LOCAL_PATH)/../../Classes/runtime \
|
|
$(LOCAL_PATH)/../../Classes \
|
|
$(LOCAL_PATH)/../../../../../../external \
|
|
$(LOCAL_PATH)/../../../../../../tools/simulator/libsimulator/lib
|
|
|
|
LOCAL_STATIC_LIBRARIES := cocos2d_lua_static
|
|
LOCAL_STATIC_LIBRARIES += cocos2d_simulator_static
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
$(call import-module,scripting/lua-bindings/proj.android)
|
|
$(call import-module,tools/simulator/libsimulator/proj.android)
|