mirror of https://github.com/axmolengine/axmol.git
22 lines
566 B
Makefile
22 lines
566 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := hellocpp_shared
|
|
|
|
LOCAL_MODULE_FILENAME := libhellocpp
|
|
|
|
LOCAL_SRC_FILES := hellocpp/main.cpp \
|
|
../../Classes/AppDelegate.cpp \
|
|
../../Classes/HelloWorldScene.cpp
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../Classes
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2dx_static cocos2dxandroid_static cocosdenshion_static
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
$(call import-module,cocos2dx)
|
|
$(call import-module,CocosDenshion/android)
|
|
$(call import-module,cocos2dx/platform/android)
|