ewol/Sources/libetk/Android.mk
Edouard Dupin d0f57d33a7 Add freetype librairy on the project ...
Remove internal data in memory ==> deprecated with assets
Set an abstraction of the loading of the freetype texture ==> must be done to be supported in Android
Correction of the stream error that generate a segmentaion fault in the Android system
2012-01-25 18:36:51 +01:00

33 lines
549 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := etk
LOCAL_STATIC_LIBRARIES := libzip
# load the common sources file of the platform
include $(LOCAL_PATH)/file.mk
LOCAL_C_INCLUDES := $(LOCAL_PATH)
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
LOCAL_CFLAGS := -D__PLATFORM__Android \
-Wno-write-strings \
-DDATA_IN_APK \
-DETK_DEBUG_LEVEL=3
LOCAL_SRC_FILES := $(FILE_LIST)
# Ewol Test Software :
LOCAL_LDLIBS := -lGLESv1_CM -ldl -llog -lz
include $(BUILD_STATIC_LIBRARY)