openh264/test/build/android/jni/Android.mk
Martin Storsjö a01d6812ed Simplify the compiler flags for the android test projects
These parts aren't performance critical, thus overriding the
compiler optimization flags (and arm instruction mode) isn't
necessary.
2014-06-29 19:59:10 +03:00

39 lines
578 B
Makefile

# Generate the libutdemo.so file
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := libUT
LOCAL_SRC_FILES := ../../../../libut.so
ifneq (,$(wildcard $(LOCAL_PATH)/$(LOCAL_SRC_FILES)))
include $(PREBUILT_SHARED_LIBRARY)
endif
include $(CLEAR_VARS)
#
# Module Settings
#
LOCAL_MODULE := utDemo
#
# Source Files
#
LOCAL_SRC_FILES := \
codec_unittest.cpp
#
# Header Includes
#
LOCAL_C_INCLUDES := \
#
# Compile Flags and Link Libraries
#
LOCAL_CFLAGS := -DANDROID_NDK
LOCAL_LDLIBS := -llog
LOCAL_SHARED_LIBRARIES := libUT
include $(BUILD_SHARED_LIBRARY)