2013-10-15 18:00:03 +08:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := cocostudio_static
|
|
|
|
|
|
|
|
LOCAL_MODULE_FILENAME := libcocostudio
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
LOCAL_SRC_FILES := CCActionFrame.cpp \
|
|
|
|
CCActionFrameEasing.cpp \
|
|
|
|
CCActionManagerEx.cpp \
|
|
|
|
CCActionNode.cpp \
|
|
|
|
CCActionObject.cpp \
|
|
|
|
CCArmature.cpp \
|
|
|
|
CCBone.cpp \
|
|
|
|
CCArmatureAnimation.cpp \
|
|
|
|
CCProcessBase.cpp \
|
|
|
|
CCTween.cpp \
|
|
|
|
CCDatas.cpp \
|
|
|
|
CCBatchNode.cpp \
|
|
|
|
CCDecorativeDisplay.cpp \
|
|
|
|
CCDisplayFactory.cpp \
|
|
|
|
CCDisplayManager.cpp \
|
|
|
|
CCSkin.cpp \
|
|
|
|
CCColliderDetector.cpp \
|
|
|
|
CCArmatureDataManager.cpp \
|
|
|
|
CCArmatureDefine.cpp \
|
|
|
|
CCDataReaderHelper.cpp \
|
|
|
|
CCSpriteFrameCacheHelper.cpp \
|
|
|
|
CCTransformHelp.cpp \
|
|
|
|
CCUtilMath.cpp \
|
|
|
|
CCComAttribute.cpp \
|
|
|
|
CCComAudio.cpp \
|
|
|
|
CCComController.cpp \
|
|
|
|
CCComRender.cpp \
|
|
|
|
CCInputDelegate.cpp \
|
|
|
|
DictionaryHelper.cpp \
|
|
|
|
CCSGUIReader.cpp \
|
|
|
|
CCSSceneReader.cpp \
|
2013-12-26 12:55:52 +08:00
|
|
|
TriggerBase.cpp \
|
|
|
|
TriggerMng.cpp \
|
2014-03-05 21:18:51 +08:00
|
|
|
TriggerObj.cpp \
|
2014-06-18 18:25:31 +08:00
|
|
|
CocoLoader.cpp \
|
2014-03-05 21:18:51 +08:00
|
|
|
WidgetReader/WidgetReader.cpp \
|
|
|
|
WidgetReader/ButtonReader/ButtonReader.cpp \
|
|
|
|
WidgetReader/CheckBoxReader/CheckBoxReader.cpp \
|
|
|
|
WidgetReader/ImageViewReader/ImageViewReader.cpp \
|
|
|
|
WidgetReader/LayoutReader/LayoutReader.cpp \
|
|
|
|
WidgetReader/ListViewReader/ListViewReader.cpp \
|
|
|
|
WidgetReader/LoadingBarReader/LoadingBarReader.cpp \
|
|
|
|
WidgetReader/PageViewReader/PageViewReader.cpp \
|
|
|
|
WidgetReader/ScrollViewReader/ScrollViewReader.cpp \
|
|
|
|
WidgetReader/SliderReader/SliderReader.cpp \
|
|
|
|
WidgetReader/TextAtlasReader/TextAtlasReader.cpp \
|
|
|
|
WidgetReader/TextBMFontReader/TextBMFontReader.cpp \
|
|
|
|
WidgetReader/TextFieldReader/TextFieldReader.cpp \
|
|
|
|
WidgetReader/TextReader/TextReader.cpp \
|
2014-06-13 16:03:03 +08:00
|
|
|
ActionTimeline/CCNodeReader.cpp \
|
|
|
|
ActionTimeline/CCActionTimelineCache.cpp \
|
2014-06-13 18:51:32 +08:00
|
|
|
ActionTimeline/CCFrame.cpp \
|
2014-06-30 11:58:15 +08:00
|
|
|
ActionTimeline/CCTimeLine.cpp \
|
|
|
|
ActionTimeline/CCActionTimeline.cpp
|
2013-10-15 18:00:03 +08:00
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/.. \
|
2013-10-18 14:18:36 +08:00
|
|
|
$(LOCAL_PATH)/../../../external
|
2013-10-15 18:00:03 +08:00
|
|
|
|
2014-05-02 05:09:26 +08:00
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../.. \
|
2013-10-18 14:18:36 +08:00
|
|
|
$(LOCAL_PATH)/../../../external \
|
2013-10-16 16:48:39 +08:00
|
|
|
$(LOCAL_PATH)/.. \
|
2013-10-23 17:44:20 +08:00
|
|
|
$(LOCAL_PATH)/../..
|
2013-10-15 18:00:03 +08:00
|
|
|
|
2014-07-03 11:43:56 +08:00
|
|
|
LOCAL_CFLAGS += -fexceptions
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2dx_static
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += cocosdenshion_static
|
2014-03-11 18:14:37 +08:00
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += cocos_ui_static
|
2013-10-15 18:00:03 +08:00
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
2014-05-02 05:09:26 +08:00
|
|
|
$(call import-module,.)
|
2013-10-15 18:00:03 +08:00
|
|
|
$(call import-module,audio/android)
|
2014-03-11 18:14:37 +08:00
|
|
|
$(call import-module,ui)
|
2013-10-15 18:00:03 +08:00
|
|
|
|