mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
05667813ad
the uninstalled wrapper would create a LD_LIBRARY_PATH with system-wide path before the local ones... resulting in the example applications picking up the system-wide libraries and not the (potentially modified) uninstalled libraries
13 lines
356 B
Makefile
13 lines
356 B
Makefile
if HAVE_GTK_X11
|
|
GTK_EXAMPLES=seek scrubby
|
|
endif
|
|
|
|
examples = $(GTK_EXAMPLES) stepping stepping2
|
|
|
|
noinst_PROGRAMS = $(examples)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS) $(GTK_LIBS)
|
|
|
|
AM_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GTK_CFLAGS) -I$(top_builddir)/gst-libs
|