examples: Fix libgstvideo linking

Use the local libgstvideo (and not the system wide one)
This commit is contained in:
Edward Hervey 2018-11-05 12:00:55 +01:00 committed by Edward Hervey
parent d3a35870a2
commit 8367d7e6f4

View file

@ -2,4 +2,4 @@ noinst_PROGRAMS = overlaycomposition
overlaycomposition_SOURCES = overlaycomposition.c
overlaycomposition_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
overlaycomposition_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_LIBS) $(GIO_LIBS) $(LIBM)
overlaycomposition_LDADD = $(GST_PLUGINS_BASE_LIBS) $(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la $(GST_LIBS) $(GIO_LIBS) $(LIBM)