diff options
author | loki666 <simons.philippe@gmail.com> | 2017-02-16 18:13:10 +0100 |
---|---|---|
committer | loki666 <simons.philippe@gmail.com> | 2017-02-16 18:13:10 +0100 |
commit | 57911fca4a7179677174cea7449af9687232e473 (patch) | |
tree | d9ef7d0643637faebe9f4b06f98b5418015ff4c3 /android/Android.mk | |
parent | 687541e61b381b57d609d0c7da7882792bd02478 (diff) | |
download | libADLMIDI-57911fca4a7179677174cea7449af9687232e473.tar.gz libADLMIDI-57911fca4a7179677174cea7449af9687232e473.tar.bz2 libADLMIDI-57911fca4a7179677174cea7449af9687232e473.zip |
add android build files
Diffstat (limited to 'android/Android.mk')
-rw-r--r-- | android/Android.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/android/Android.mk b/android/Android.mk new file mode 100644 index 0000000..d379b3c --- /dev/null +++ b/android/Android.mk @@ -0,0 +1,9 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) +LOCAL_MODULE := adlmidi_shared +LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libADLMIDI.so +LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../src +TARGET_PLATFORM = android-10 + +include $(PREBUILT_SHARED_LIBRARY) |