mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
21 lines
411 B
Makefile
Executable file
21 lines
411 B
Makefile
Executable file
##lib swcale###################
|
|
LOCAL_PATH:= $(call my-dir)/../../libswscale/
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libswscale
|
|
|
|
LOCAL_SRC_FILES = \
|
|
options.c \
|
|
rgb2rgb.c \
|
|
swscale.c \
|
|
utils.c \
|
|
yuv2rgb.c
|
|
|
|
LOCAL_CFLAGS += -DHAVE_AV_CONFIG_H
|
|
|
|
#for including config.h:
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../build/ffmpeg \
|
|
$(LOCAL_PATH)/../ffmpeg \
|
|
$(LOCAL_PATH)/
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|