You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := sample_sws2_play
|
|
|
|
LOCAL_SRC_FILES := *.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/include/audio \
|
|
-Ivendor/huanglong/uapi/include/media \
|
|
-Ivendor/huanglong/uapi/include/video \
|
|
-Ivendor/huanglong/uapi/aenc/include \
|
|
-Ivendor/huanglong/uapi/ai/include \
|
|
-Ivendor/huanglong/uapi/avplay/include \
|
|
-Ivendor/huanglong/uapi/ao/include \
|
|
-Ivendor/huanglong/uapi/common/include \
|
|
-Ivendor/huanglong/uapi/ha_codec/include \
|
|
-Ivendor/huanglong/uapi/amp/include \
|
|
-Ivendor/huanglong/uapi/ha_effect/include \
|
|
-Ivendor/huanglong/linux/include/audio \
|
|
-Ivendor/huanglong/linux/include/generic \
|
|
-Ivendor/huanglong/sample/audio \
|
|
-Ivendor/platform/secure_c/include
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=sample_sws2_play \
|
|
-DCONFIG_SOCT_LOG_SUPPORT
|
|
|
|
LOCAL_LDFLAGS := -lpthread
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_common \
|
|
libuapi_avplay \
|
|
libuapi_securec \
|
|
libuapi_ao \
|
|
libuapi_amp \
|
|
libuapi_ai \
|
|
libuapi_aenc
|
|
|
|
LOCAL_STATIC_LIBRARIES := libuapi_adp
|
|
|
|
include $(BUILD_LINUX_EXECUTABLE)
|