2014-08-27 20:58:32 +08:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := cocos_extension_static
|
|
|
|
|
|
|
|
LOCAL_MODULE_FILENAME := libextension
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
assets-manager/AssetsManager.cpp \
|
2014-10-09 18:30:39 +08:00
|
|
|
assets-manager/Downloader.cpp \
|
|
|
|
assets-manager/Manifest.cpp \
|
|
|
|
assets-manager/AssetsManagerEx.cpp \
|
|
|
|
assets-manager/CCEventAssetsManagerEx.cpp \
|
|
|
|
assets-manager/CCEventListenerAssetsManagerEx.cpp \
|
2014-08-27 20:58:32 +08:00
|
|
|
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/CCScrollView/CCScrollView.cpp \
|
|
|
|
GUI/CCScrollView/CCTableView.cpp \
|
|
|
|
GUI/CCScrollView/CCTableViewCell.cpp \
|
|
|
|
physics-nodes/CCPhysicsDebugNode.cpp \
|
|
|
|
physics-nodes/CCPhysicsSprite.cpp
|
|
|
|
|
2014-08-27 22:54:28 +08:00
|
|
|
LOCAL_STATIC_LIBRARIES := cocos2dx_internal_static
|
2014-08-27 20:58:32 +08:00
|
|
|
LOCAL_STATIC_LIBRARIES += cocos_curl_static
|
|
|
|
LOCAL_STATIC_LIBRARIES += box2d_static
|
|
|
|
|
|
|
|
LOCAL_CXXFLAGS += -fexceptions
|
|
|
|
|
2014-10-17 10:13:33 +08:00
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
2014-08-27 20:58:32 +08:00
|
|
|
|
2014-10-17 10:13:33 +08:00
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/. \
|
|
|
|
$(LOCAL_PATH)/.. \
|
2014-08-27 20:58:32 +08:00
|
|
|
$(LOCAL_PATH)/GUI/CCControlExtension \
|
|
|
|
$(LOCAL_PATH)/GUI/CCScrollView
|
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|