plugins: add autotools build for new ges plugin

This commit is contained in:
Tim-Philipp Müller 2019-02-26 13:57:17 +00:00
parent 3ee0e477a2
commit 87f99d34bc
3 changed files with 24 additions and 1 deletions

View file

@ -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

View file

@ -1 +1 @@
SUBDIRS = nle
SUBDIRS = ges nle

22
plugins/ges/Makefile.am Normal file
View 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