project_files/frontlib/Android.mk
author koda
Mon, 17 Jun 2013 17:40:01 +0200
changeset 9234 2bf3796c5855
parent 7861 bc7b6aa5d67a
child 10017 de822cd3df3a
permissions -rw-r--r--
This commit changes many aspect of our cmake build system - shared libraries are compiled by default: * this modifies RPATH of unix executables; * this will prevent a lot of linking issues, esp. from pascal world; * the old behaviour (static libs) is still available with -DBUILD_SHARED_LIBS=off; * of course in this case you have to provide the full list of dependencies with FPFLAGS and CMAKE_C_FLAGS; - pascal is now fully integrated with cmake, meaning you can just do add_sources and use CMAKE_Pascal_FLAGS: * some of the language features are only partially implemented, for example .inc files will not get rebuilt if you modify them; * target_link_libraries for pascal targets is just dummy as linking is determined within pascal files; * universal builds for osx are not available any more; - bundled libraries and system libraries are addressed using the target name: * this avoids depedency tracking; * this allows to name output as we wish.

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE := frontlib

LOCAL_CFLAGS := -I$(LOCAL_PATH)/../Android-build/SDL-android-project/jni/SDL_net -std=c99 -I$(LOCAL_PATH)/../Android-build/SDL-android-project/jni/SDL/include  

LOCAL_SRC_FILES := base64/base64.c iniparser/iniparser.c \
	iniparser/dictionary.c ipc/gameconn.c ipc/ipcbase.c \
	ipc/ipcprotocol.c ipc/mapconn.c md5/md5.c model/scheme.c \
	model/gamesetup.c model/map.c model/mapcfg.c model/room.c \
	model/schemelist.c model/team.c model/teamlist.c model/weapon.c \
	net/netbase.c net/netconn_callbacks.c net/netconn_send.c \
	net/netconn.c net/netprotocol.c util/buffer.c util/inihelper.c \
	util/logging.c util/util.c frontlib.c hwconsts.c socket.c \
	extra/jnacontrol.c

LOCAL_SHARED_LIBRARIES += SDL SDL_net
LOCAL_LDLIBS += -lz

include $(BUILD_SHARED_LIBRARY)