Added miniupnpc library

This commit is contained in:
Sergii Pylypenko
2015-02-13 17:30:46 +02:00
parent 4585415c40
commit e7c8a0d12b
44 changed files with 6901 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := miniupnpc
LOCAL_C_INCLUDES :=
LOCAL_CFLAGS := -O2 -DMINIUPNPC_SET_SOCKET_TIMEOUT -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112L
LOCAL_CPP_EXTENSION := .cpp
LOCAL_SRC_FILES := $(foreach F, ., $(addprefix $(F)/,$(notdir $(wildcard $(LOCAL_PATH)/$(F)/*.cpp))))
LOCAL_SRC_FILES += $(foreach F, ., $(addprefix $(F)/,$(notdir $(wildcard $(LOCAL_PATH)/$(F)/*.c))))
LOCAL_SHARED_LIBRARIES :=
LOCAL_STATIC_LIBRARIES :=
LOCAL_LDLIBS :=
include $(BUILD_SHARED_LIBRARY)