mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
plugins: add autotools build for new ges plugin
This commit is contained in:
parent
3ee0e477a2
commit
87f99d34bc
3 changed files with 24 additions and 1 deletions
|
@ -424,6 +424,7 @@ pkgconfig/Makefile
|
|||
pkgconfig/gst-editing-services.pc
|
||||
pkgconfig/gst-editing-services-uninstalled.pc
|
||||
plugins/Makefile
|
||||
plugins/ges/Makefile
|
||||
plugins/nle/Makefile
|
||||
bindings/Makefile
|
||||
bindings/python/Makefile
|
||||
|
|
|
@ -1 +1 @@
|
|||
SUBDIRS = nle
|
||||
SUBDIRS = ges nle
|
||||
|
|
22
plugins/ges/Makefile.am
Normal file
22
plugins/ges/Makefile.am
Normal file
|
@ -0,0 +1,22 @@
|
|||
plugin_LTLIBRARIES = libgstges.la
|
||||
|
||||
libgstges_la_SOURCES = \
|
||||
gesplugin.c \
|
||||
gessrc.c \
|
||||
gesdemux.c
|
||||
|
||||
libgstges_la_CFLAGS = -I$(top_srcdir) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
|
||||
libgstges_la_LIBADD = \
|
||||
$(top_builddir)/ges/libges-@GST_API_VERSION@.la \
|
||||
$(GST_PLUGINS_BASE_LIBS) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS)
|
||||
|
||||
libgstges_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gesdemux.h \
|
||||
gessrc.h
|
||||
|
Loading…
Reference in a new issue