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.
25 lines
788 B
25 lines
788 B
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := sample_venc
|
|
|
|
LOCAL_SRC_FILES := sample_venc.c
|
|
|
|
LOCAL_CFLAGS := -Ivendor/huanglong/uapi/include/media \
|
|
-Ivendor/huanglong/uapi/include/video \
|
|
-Ivendor/huanglong/uapi/common/include \
|
|
-Ivendor/huanglong/uapi/memory/include \
|
|
-Ivendor/huanglong/uapi/venc/include \
|
|
-Ivendor/huanglong/linux/include/generic \
|
|
-Ivendor/platform/secure_c/include \
|
|
-Ivendor/huanglong/sample/venc
|
|
|
|
LOCAL_LDFLAGS := -lpthread
|
|
|
|
LOCAL_SHARED_LIBRARIES := libuapi_common \
|
|
libuapi_memory \
|
|
libuapi_securec \
|
|
libuapi_venc
|
|
|
|
include $(BUILD_LINUX_EXECUTABLE)
|