axmol/plugin/samples/HelloSocial/proj.android/jni/Android.mk

27 lines
703 B
Makefile
Raw Normal View History

2013-04-24 16:00:36 +08:00
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := game_shared
LOCAL_MODULE_FILENAME := libgame
LOCAL_SRC_FILES := hellocpp/main.cpp \
../../Classes/AppDelegate.cpp \
../../Classes/HelloWorldScene.cpp \
../../Classes/MySocialManager.cpp
2013-04-24 16:00:36 +08:00
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../Classes
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2dx_static \
PluginTwitterStatic \
PluginProtocolStatic \
PluginWeiboStatic
2013-04-24 16:00:36 +08:00
include $(BUILD_SHARED_LIBRARY)
$(call import-module,cocos2dx)
$(call import-module,plugins/twitter/android)
$(call import-module,plugins/weibo/android)
2013-04-24 16:00:36 +08:00
$(call import-module,protocols/android)