mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
bdcc9d1704
Since this includes kms.
41 lines
815 B
Makefile
41 lines
815 B
Makefile
plugin_LTLIBRARIES = libgstkmssink.la
|
|
|
|
libgstkmssink_la_SOURCES = \
|
|
gstkmssink.c \
|
|
gstkmsutils.c \
|
|
gstkmsallocator.c \
|
|
gstkmsbufferpool.c \
|
|
$(NUL)
|
|
|
|
libgstkmssink_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS) \
|
|
$(GST_ALLOCATORS_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(KMS_DRM_CFLAGS) \
|
|
$(NULL)
|
|
|
|
libgstkmssink_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_VIDEO_LIBS) \
|
|
$(GST_ALLOCATORS_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(KMS_DRM_LIBS) \
|
|
$(NULL)
|
|
|
|
libgstkmssink_la_LDFLAGS = \
|
|
$(GST_PLUGIN_LDFLAGS) \
|
|
$(NULL)
|
|
|
|
libgstkmssink_la_LIBTOOLFLAGS = \
|
|
$(GST_PLUGIN_LIBTOOLFLAGS) \
|
|
$(NULL)
|
|
|
|
noinst_HEADERS = \
|
|
gstkmssink.h \
|
|
gstkmsutils.h \
|
|
gstkmsallocator.h \
|
|
gstkmsbufferpool.h \
|
|
$(NULL)
|