From 87f99d34bc09d9daf5f3ea8bc1c3e30f9ac99fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 26 Feb 2019 13:57:17 +0000 Subject: [PATCH] plugins: add autotools build for new ges plugin --- configure.ac | 1 + plugins/Makefile.am | 2 +- plugins/ges/Makefile.am | 22 ++++++++++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 plugins/ges/Makefile.am diff --git a/configure.ac b/configure.ac index cba96878ba..28519e0f0b 100644 --- a/configure.ac +++ b/configure.ac @@ -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 diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 7f0a0065bc..796df5d2e2 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -1 +1 @@ -SUBDIRS = nle +SUBDIRS = ges nle diff --git a/plugins/ges/Makefile.am b/plugins/ges/Makefile.am new file mode 100644 index 0000000000..7344526c24 --- /dev/null +++ b/plugins/ges/Makefile.am @@ -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 +