mirror of https://github.com/fallahn/tmxlite.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
597 B
Makefile
29 lines
597 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := tmxlite
|
|
|
|
LOCAL_CPPFLAGS := -Dstd=c++1y
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/tmxlite/include
|
|
|
|
SRC_PATH := $(LOCAL_PATH)/tmxlite/src
|
|
LOCAL_SRC_FILES := \
|
|
$(SRC_PATH)/miniz.c \
|
|
$(SRC_PATH)/FreeFuncs.cpp \
|
|
$(SRC_PATH)/ImageLayer.cpp \
|
|
$(SRC_PATH)/Map.cpp \
|
|
$(SRC_PATH)/Object.cpp \
|
|
$(SRC_PATH)/ObjectGroup.cpp \
|
|
$(SRC_PATH)/Property.cpp \
|
|
$(SRC_PATH)/TileLayer.cpp \
|
|
$(SRC_PATH)/Tileset.cpp \
|
|
$(SRC_PATH)/detail/pugixml.cpp \
|
|
|
|
LOCAL_LDLIBS :=
|
|
|
|
LOCAL_EXPORT_C_INCLUDES += $(LOCAL_C_INCLUDES)
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|