plugins: add autotools build for new ges plugin
authorTim-Philipp Müller <tim@centricular.com>
Tue, 26 Feb 2019 13:57:17 +0000 (13:57 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Tue, 26 Feb 2019 14:00:33 +0000 (14:00 +0000)
configure.ac
plugins/Makefile.am
plugins/ges/Makefile.am [new file with mode: 0644]

index cba9687..28519e0 100644 (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
index 7f0a006..796df5d 100644 (file)
@@ -1 +1 @@
-SUBDIRS = nle
+SUBDIRS = ges nle
diff --git a/plugins/ges/Makefile.am b/plugins/ges/Makefile.am
new file mode 100644 (file)
index 0000000..7344526
--- /dev/null
@@ -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
+