From 5fd12e6daebda436c405f9c7d3cb7561b492e9ab Mon Sep 17 00:00:00 2001 From: David Schleef Date: Mon, 26 Feb 2007 21:01:03 +0000 Subject: Add a new plugin/library to make it easy for apps to shove data into a pipeline. Original commit message from CVS: * configure.ac: * gst/app/Makefile.am: * gst/app/gstapp.c: * gst/app/gstappsrc.c: * gst/app/gstappsrc.h: Add a new plugin/library to make it easy for apps to shove data into a pipeline. --- gst/app/Makefile.am | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 gst/app/Makefile.am (limited to 'gst/app/Makefile.am') diff --git a/gst/app/Makefile.am b/gst/app/Makefile.am new file mode 100644 index 00000000..d232d330 --- /dev/null +++ b/gst/app/Makefile.am @@ -0,0 +1,18 @@ +lib_LTLIBRARIES = libgstapp-0.10.la + +plugin_LTLIBRARIES = libgstapp.la + +libgstapp_la_SOURCES = gstapp.c +libgstapp_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \ + $(GST_PLUGINS_BASE_CFLAGS) +libgstapp_la_LIBADD = $(GST_BASE_LIBS) libgstapp-0.10.la +libgstapp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +libgstapp_0_10_la_SOURCES = gstappsrc.c +libgstapp_0_10_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \ + $(GST_PLUGINS_BASE_CFLAGS) +libgstapp_0_10_la_LIBADD = $(GST_BASE_LIBS) +libgstapp_0_10_la_LDFLAGS = $(GST_LDFLAGS) + +noinst_HEADERS = gstappsrc.h + -- cgit v1.2.1