diff options
Diffstat (limited to 'gst/rtsp/Makefile.am')
-rwxr-xr-x | gst/rtsp/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gst/rtsp/Makefile.am b/gst/rtsp/Makefile.am new file mode 100755 index 0000000..267e49a --- /dev/null +++ b/gst/rtsp/Makefile.am @@ -0,0 +1,16 @@ +plugin_LTLIBRARIES = libgstrtsp.la + +libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \ + gstrtpdec.c gstrtspext.c + +libgstrtsp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS) +libgstrtsp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) $(GST_BASE_LIBS) $(GIO_LIBS) \ + -lgstrtp-@GST_API_VERSION@ -lgstrtsp-@GST_API_VERSION@ \ + -lgstsdp-@GST_API_VERSION@ $(GST_NET_LIBS) $(GST_LIBS) +libgstrtsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstrtsp_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) + +noinst_HEADERS = gstrtspsrc.h \ + gstrtsp.h \ + gstrtpdec.h \ + gstrtspext.h |