mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
examples: Clean up CFLAGS/LDADD to link with the correct versions of all libraries
This commit is contained in:
parent
60dd95849f
commit
cf064134ee
1 changed files with 15 additions and 5 deletions
|
@ -14,11 +14,21 @@ noinst_PROGRAMS += test-cgroups
|
|||
LDADD += $(LIBCGROUP_LIBS)
|
||||
endif
|
||||
|
||||
test_netclock_LDFLAGS = \
|
||||
test_netclock_CFLAGS = \
|
||||
$(GST_NET_CFAGS) \
|
||||
$(GST_CFLAGS) \
|
||||
$(AM_CFLAGS)
|
||||
test_netclock_LDADD = \
|
||||
$(GST_NET_LIBS) \
|
||||
$(GST_LIBS) \
|
||||
-lgstnet-@GST_API_VERSION@ \
|
||||
$(top_builddir)/gst/rtsp-server/libgstrtspserver-@GST_API_VERSION@.la
|
||||
$(top_builddir)/gst/rtsp-server/libgstrtspserver-@GST_API_VERSION@.la \
|
||||
$(LDADD)
|
||||
|
||||
test_netclock_client_LDFLAGS = \
|
||||
test_netclock_client_CFLAGS = \
|
||||
$(GST_NET_CFAGS) \
|
||||
$(GST_CFLAGS) \
|
||||
$(AM_CFLAGS)
|
||||
test_netclock_client_LDADD = \
|
||||
$(GST_NET_LIBS) \
|
||||
$(GST_LIBS) \
|
||||
-lgstnet-@GST_API_VERSION@
|
||||
$(LDADD)
|
||||
|
|
Loading…
Reference in a new issue