Mercurial > MadButterfly
diff Android/jni/Android.mk @ 496:71ad34f73a6e Android_Skia
JNI interface for Android
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Thu, 26 Nov 2009 15:03:01 +0800 |
parents | |
children | 0d9f1f4d3154 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Android/jni/Android.mk Thu Nov 26 15:03:01 2009 +0800 @@ -0,0 +1,15 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := libmbfly-jni +LOCAL_SRC_FILES := mbfly.cpp +LOCAL_SHARED_LIBRARIES := libcorecg libsgl libnativehelper +LOCAL_STATIC_LIBRARIES := libmbfly +LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/libmbfly \ + $(call include-path-for,corecg) \ + $(call include-path-for,libnativehelper)/nativehelper + +LOCAL_PRELINK_MODULE := false + +include $(BUILD_SHARED_LIBRARY)