Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/android/app/jni/Android.mk')
-rw-r--r--source/android/app/jni/Android.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/android/app/jni/Android.mk b/source/android/app/jni/Android.mk
new file mode 100644
index 00000000000..57619489396
--- /dev/null
+++ b/source/android/app/jni/Android.mk
@@ -0,0 +1,17 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := main
+
+
+#LOCAL_C_INCLUDES := $(LOCAL_PATH)/$(SDL_PATH)/include
+
+# Add your application source files here...
+LOCAL_SRC_FILES :=main.c aEvent.c
+
+
+LOCAL_LDLIBS := -lEGL -lGLESv2 -llog
+
+
+include $(BUILD_SHARED_LIBRARY)