Added intl and sdl_gfx libraries (thanks to Kurosu)
This commit is contained in:
26
project/jni/intl/Android.mk
Normal file
26
project/jni/intl/Android.mk
Normal file
@@ -0,0 +1,26 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := intl
|
||||
|
||||
APP_SUBDIRS := src
|
||||
|
||||
# Add more subdirs here, like src/subdir1 src/subdir2
|
||||
|
||||
LOCAL_CFLAGS := -I$(LOCAL_PATH)/src -DBUILDING_LIBINTL -DBUILDING_DLL \
|
||||
-DIN_LIBINTL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY \
|
||||
-Dset_relocation_prefix=libintl_set_relocation_prefix \
|
||||
-Drelocate=libintl_relocate -DDEPENDS_ON_LIBICONV=1 \
|
||||
-DNO_XMALLOC -DHAVE_CONFIG_H \
|
||||
-DLOCALEDIR=\"/usr/local/share/locale\" \
|
||||
-DLIBDIR=\"/usr/local/lib\" \
|
||||
-DLOCALE_ALIAS_PATH=\"/usr/local/share/locale\" \
|
||||
-DINSTALLDIR=\"/usr/local/lib\"
|
||||
|
||||
# -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale\" \
|
||||
# -DINSTALLDIR=\"/usr/local/lib\"
|
||||
|
||||
LOCAL_SRC_FILES := $(foreach F, $(APP_SUBDIRS), $(addprefix $(F)/,$(notdir $(wildcard $(LOCAL_PATH)/$(F)/*.c))))
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
Reference in New Issue
Block a user