mirror of https://github.com/axmolengine/axmol.git
21 lines
508 B
Makefile
21 lines
508 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := yasio_static
|
|
|
|
LOCAL_MODULE_FILENAME := libyasio
|
|
|
|
LOCAL_CPPFLAGS := -std=c++11 -pthread -frtti -fexceptions
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../../ $(LOCAL_PATH)/../../../lua/luajit/include $(LOCAL_PATH)/../../../../cocos
|
|
|
|
LOCAL_SRC_FILES := ../../xxsocket.cpp \
|
|
../../yasio.cpp \
|
|
../../ibstream.cpp \
|
|
../../obstream.cpp \
|
|
../../bindings/lyasio.cpp \
|
|
../../bindings/yasio_cclua.cpp
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|