diff options
Diffstat (limited to 'ext/gio/Makefile.am')
-rw-r--r-- | ext/gio/Makefile.am | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/ext/gio/Makefile.am b/ext/gio/Makefile.am index 15d57449..4fd7f55b 100644 --- a/ext/gio/Makefile.am +++ b/ext/gio/Makefile.am @@ -3,11 +3,26 @@ plugin_LTLIBRARIES = libgstgio.la # sources used to compile this plug-in -libgstgio_la_SOURCES = gstgio.c gstgiosink.c gstgiosrc.c +libgstgio_la_SOURCES = \ + gstgio.c \ + gstgiobasesink.c \ + gstgiobasesrc.c \ + gstgiosink.c \ + gstgiosrc.c \ + gstgiostreamsink.c \ + gstgiostreamsrc.c libgstgio_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GIO_CFLAGS) libgstgio_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GIO_LIBS) libgstgio_la_LDFLAGS = $(GST_GIO_LDFLAGS) # headers we need but don't want installed -noinst_HEADERS = gstgio.h gstgiosink.h gstgiosrc.h +noinst_HEADERS = \ + gstgio.h \ + gstgiobasesink.h \ + gstgiobasesrc.h \ + gstgiosink.h \ + gstgiosrc.h \ + gstgiostreamsink.h \ + gstgiostreamsrc.h + |