c40af4c4ab
Android: ToJava can call functions on Java by using JNI Android: Plugins work Android: Added android specific files to VS2008 project, but they are excluded from compiling git-svn-id: http://mc-server.googlecode.com/svn/trunk@747 0a769ca7-a7f5-676a-18bf-c427514a06d6
45 lines
1.4 KiB
Makefile
45 lines
1.4 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := mcserver
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := $(shell find lua-5.1.4 jsoncpp-src-0.5.0 zlib-1.2.7 source squirrel_3_0_1_stable tolua++-1.0.93 iniFile WebServer '(' -name '*.cpp' -o -name '*.c' ')')
|
|
LOCAL_SRC_FILES := $(filter-out %SquirrelFunctions.cpp %SquirrelBindings.cpp %cPlugin_Squirrel.cpp %cSquirrelCommandBinder.cpp %minigzip.c %lua.c %tolua.c %toluabind.c %LeakFinder.cpp %StackWalker.cpp %example.c,$(LOCAL_SRC_FILES))
|
|
LOCAL_SRC_FILES := $(patsubst %.cpp,../%.cpp,$(LOCAL_SRC_FILES))
|
|
LOCAL_SRC_FILES := $(patsubst %.c,../%.c,$(LOCAL_SRC_FILES))
|
|
LOCAL_SRC_FILES += app-android.cpp ToJava.cpp
|
|
|
|
LOCAL_CFLAGS := -DANDROID_NDK \
|
|
-ffast-math \
|
|
-O3 \
|
|
-funroll-loops \
|
|
-mfloat-abi=softfp -mfpu=neon \
|
|
|
|
|
|
LOCAL_STATIC_LIBRARIES := cpufeatures
|
|
|
|
LOCAL_C_INCLUDES := ./source \
|
|
./source/md5 \
|
|
./WebServer \
|
|
./source/packets \
|
|
./source/items \
|
|
./source/blocks \
|
|
./tolua++-1.0.93/src/lib \
|
|
./lua-5.1.4/src \
|
|
./zlib-1.2.7 \
|
|
./iniFile \
|
|
./tolua++-1.0.93/include \
|
|
./jsoncpp-src-0.5.0/include \
|
|
./jsoncpp-src-0.5.0/src/lib_json \
|
|
./squirrel_3_0_1_stable/include \
|
|
./squirrel_3_0_1_stable \
|
|
./squirrel_3_0_1_stable/sqrat \
|
|
|
|
|
|
LOCAL_LDLIBS := -ldl -llog
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
$(call import-module,cpufeatures)
|