mirror of https://github.com/axmolengine/axmol.git
21 lines
407 B
Makefile
21 lines
407 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_SRC_FILES := ../../xxsocket.cpp \
|
||
|
../../yasio.cpp \
|
||
|
../../ibstream.cpp \
|
||
|
../../obstream.cpp
|
||
|
|
||
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
||
|
|
||
|
include $(BUILD_STATIC_LIBRARY)
|