mirror of
https://github.com/ioacademy-jikim/multimedia
synced 2025-06-07 07:56:26 +00:00
28 lines
447 B
Makefile
28 lines
447 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
test-resample.cpp \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(call include-path-for, audio-utils)
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libsndfile
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libaudioresampler \
|
|
libaudioutils \
|
|
libdl \
|
|
libcutils \
|
|
libutils \
|
|
liblog
|
|
|
|
LOCAL_MODULE:= test-resample
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|