mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
b04856f0cf
An example server and client that works for synchronising live streams only - as it can't support pause/play.
24 lines
675 B
Makefile
24 lines
675 B
Makefile
noinst_PROGRAMS = test-video test-ogg test-mp4 test-readme \
|
|
test-launch test-sdp test-uri test-auth \
|
|
test-multicast test-multicast2 test-appsrc \
|
|
test-video-rtx test-record \
|
|
test-netclock test-netclock-client
|
|
|
|
#INCLUDES = -I$(top_srcdir) -I$(srcdir)
|
|
|
|
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
LDADD = $(GST_OBJ_LIBS) $(GIO_LIBS)
|
|
|
|
if HAVE_LIBCGROUP
|
|
noinst_PROGRAMS += test-cgroups
|
|
LDADD += $(LIBCGROUP_LIBS)
|
|
endif
|
|
|
|
test_netclock_LDFLAGS = \
|
|
$(GST_LIBS) \
|
|
-lgstnet-@GST_API_VERSION@ \
|
|
$(top_builddir)/gst/rtsp-server/libgstrtspserver-@GST_API_VERSION@.la
|
|
|
|
test_netclock_client_LDFLAGS = \
|
|
$(GST_LIBS) \
|
|
-lgstnet-@GST_API_VERSION@
|