mirror of https://github.com/axmolengine/axmol.git
17 lines
406 B
Makefile
17 lines
406 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := cocosdenshion_shared
|
|
|
|
LOCAL_MODULE_FILENAME := libcocosdenshion
|
|
|
|
LOCAL_SRC_FILES := SimpleAudioEngine.cpp \
|
|
jni/SimpleAudioEngineJni.cpp
|
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../include
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../include
|
|
|
|
LOCAL_LDLIBS := -llog
|
|
|
|
include $(BUILD_SHARED_LIBRARY) |