mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
14 lines
442 B
Makefile
14 lines
442 B
Makefile
|
# plugindir is set in configure
|
||
|
|
||
|
plugin_LTLIBRARIES = libgstgio.la
|
||
|
|
||
|
# sources used to compile this plug-in
|
||
|
libgstgio_la_SOURCES = gstgio.c gstgiosink.c gstgiosrc.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
|