mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
eb2dae8fd6
- libgstgtksink.so -> libgstgtk.so - libgstteletextdec.so -> libgstteletex.so - libgstcamerabin2.so -> libgstcamerabin.so - libgstonvif.so -> libgstrtponvif.so (meson only) - sdp -> sdpelem (avoid clash with libgstsdp) - gstsiren -> siren - libgstkmssink.so -> libgstkms.so https://bugzilla.gnome.org/show_bug.cgi?id=779344
41 lines
791 B
Makefile
41 lines
791 B
Makefile
plugin_LTLIBRARIES = libgstkms.la
|
|
|
|
libgstkms_la_SOURCES = \
|
|
gstkmssink.c \
|
|
gstkmsutils.c \
|
|
gstkmsallocator.c \
|
|
gstkmsbufferpool.c \
|
|
$(NUL)
|
|
|
|
libgstkms_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS) \
|
|
$(GST_ALLOCATORS_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(KMS_DRM_CFLAGS) \
|
|
$(NULL)
|
|
|
|
libgstkms_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_VIDEO_LIBS) \
|
|
$(GST_ALLOCATORS_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(KMS_DRM_LIBS) \
|
|
$(NULL)
|
|
|
|
libgstkms_la_LDFLAGS = \
|
|
$(GST_PLUGIN_LDFLAGS) \
|
|
$(NULL)
|
|
|
|
libgstkms_la_LIBTOOLFLAGS = \
|
|
$(GST_PLUGIN_LIBTOOLFLAGS) \
|
|
$(NULL)
|
|
|
|
noinst_HEADERS = \
|
|
gstkmssink.h \
|
|
gstkmsutils.h \
|
|
gstkmsallocator.h \
|
|
gstkmsbufferpool.h \
|
|
$(NULL)
|