From 9eedf16ef05dff212c27ac35719f84287db3fadf Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Fri, 8 Nov 2013 12:08:06 +0100 Subject: [PATCH] Added native android build scripts. --- client/Android/FreeRDPCore/jni/Android.mk.cmake | 8 ++++++++ client/Android/FreeRDPCore/jni/Application.mk.cmake | 1 + 2 files changed, 9 insertions(+) create mode 100644 client/Android/FreeRDPCore/jni/Android.mk.cmake create mode 100644 client/Android/FreeRDPCore/jni/Application.mk.cmake diff --git a/client/Android/FreeRDPCore/jni/Android.mk.cmake b/client/Android/FreeRDPCore/jni/Android.mk.cmake new file mode 100644 index 0000000..94452ea --- /dev/null +++ b/client/Android/FreeRDPCore/jni/Android.mk.cmake @@ -0,0 +1,8 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := freerdp-android +LOCAL_SRC_FILES := $(TARGET_ARCH_ABI)/libfreerdp-android.so +LOCAL_EXPORT_C_INCLUDES := ../../../../include +include $(PREBUILT_SHARED_LIBRARY) diff --git a/client/Android/FreeRDPCore/jni/Application.mk.cmake b/client/Android/FreeRDPCore/jni/Application.mk.cmake new file mode 100644 index 0000000..6d00145 --- /dev/null +++ b/client/Android/FreeRDPCore/jni/Application.mk.cmake @@ -0,0 +1 @@ +APP_ABI := armeabi-v7a -- 2.7.4