2012-07-20 17:06:00 +08:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := cocos_extension_static
|
|
|
|
|
|
|
|
LOCAL_MODULE_FILENAME := libextension
|
|
|
|
|
2013-08-22 11:49:34 +08:00
|
|
|
LOCAL_SRC_FILES := \
|
2013-10-18 14:18:36 +08:00
|
|
|
assets-manager/AssetsManager.cpp \
|
|
|
|
GUI/CCControlExtension/CCControl.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlButton.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlColourPicker.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlHuePicker.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlPotentiometer.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlSaturationBrightnessPicker.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlSlider.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlStepper.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlSwitch.cpp \
|
|
|
|
GUI/CCControlExtension/CCControlUtils.cpp \
|
|
|
|
GUI/CCControlExtension/CCInvocation.cpp \
|
|
|
|
GUI/CCControlExtension/CCScale9Sprite.cpp \
|
|
|
|
GUI/CCEditBox/CCEditBox.cpp \
|
|
|
|
GUI/CCEditBox/CCEditBoxImplAndroid.cpp \
|
|
|
|
GUI/CCEditBox/CCEditBoxImplNone.cpp \
|
|
|
|
GUI/CCEditBox/CCEditBoxImplWin.cpp \
|
|
|
|
GUI/CCScrollView/CCScrollView.cpp \
|
|
|
|
GUI/CCScrollView/CCTableView.cpp \
|
|
|
|
GUI/CCScrollView/CCTableViewCell.cpp \
|
|
|
|
physics-nodes/CCPhysicsDebugNode.cpp \
|
|
|
|
physics-nodes/CCPhysicsSprite.cpp
|
2012-07-20 17:06:00 +08:00
|
|
|
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2dx_static
|
2013-03-19 06:42:28 +08:00
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += cocosdenshion_static
|
2012-08-09 10:45:11 +08:00
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += cocos_curl_static
|
2012-11-20 16:27:47 +08:00
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += box2d_static
|
2013-05-31 23:13:03 +08:00
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libwebsockets_static
|
2012-07-20 17:06:00 +08:00
|
|
|
|
2013-06-14 14:34:50 +08:00
|
|
|
LOCAL_CXXFLAGS += -fexceptions
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
|
|
|
|
|
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/.. \
|
2012-08-09 10:45:11 +08:00
|
|
|
$(LOCAL_PATH)/GUI/CCControlExtension \
|
2013-10-15 18:00:03 +08:00
|
|
|
$(LOCAL_PATH)/GUI/CCScrollView
|
2012-07-20 17:06:00 +08:00
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
$(call import-module,2d)
|
2013-10-10 15:40:06 +08:00
|
|
|
$(call import-module,audio/android)
|
2013-10-18 14:18:36 +08:00
|
|
|
$(call import-module,curl/prebuilt/android)
|
2013-10-15 18:00:03 +08:00
|
|
|
$(call import-module,Box2D)
|
|
|
|
$(call import-module,websockets/prebuilt/android)
|
2013-10-18 14:18:36 +08:00
|
|
|
|