mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
37 lines
717 B
Makefile
37 lines
717 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)
|
|
|
|
noinst_HEADERS = \
|
|
gstkmssink.h \
|
|
gstkmsutils.h \
|
|
gstkmsallocator.h \
|
|
gstkmsbufferpool.h \
|
|
$(NULL)
|