examples: Move seek example into its own directory

This commit is contained in:
Sebastian Dröge 2012-03-02 11:57:34 +01:00
parent 87d41b87a0
commit 83e0c28488
5 changed files with 16 additions and 4 deletions

View file

@ -1023,6 +1023,7 @@ tests/examples/gio/Makefile
tests/examples/overlay/Makefile
tests/examples/seek/Makefile
tests/examples/snapshot/Makefile
tests/examples/playback/Makefile
tests/examples/playrec/Makefile
tests/examples/v4l/Makefile
tests/files/Makefile

View file

@ -8,9 +8,13 @@ if USE_GIO
GIO_SUBDIRS = gio
endif
SUBDIRS = app audio dynamic fft $(FT2_SUBDIRS) $(GIO_SUBDIRS) overlay playrec v4l encoding
if HAVE_GTK_X11
GTK_SUBDIRS = playback
endif
DIST_SUBDIRS = app audio dynamic fft gio overlay seek snapshot playrec v4l encoding
SUBDIRS = app audio dynamic fft $(FT2_SUBDIRS) $(GIO_SUBDIRS) overlay $(GTK_SUBDIRS) playrec v4l encoding
DIST_SUBDIRS = app audio dynamic fft gio overlay seek snapshot playback playrec v4l encoding
include $(top_srcdir)/common/parallel-subdirs.mak

View file

@ -0,0 +1,7 @@
noinst_PROGRAMS = seek
LDADD = \
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-@GST_MAJORMINOR@.la \
$(GST_LIBS) $(GTK_LIBS) $(LIBM)
AM_CFLAGS = -I$(top_builddir)/gst-libs $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)

View file

@ -1,8 +1,8 @@
if HAVE_GTK_X11
if HAVE_LINUX_JOYSTICK_HEADERS
GTK_EXAMPLES=seek scrubby jsseek
GTK_EXAMPLES=scrubby jsseek
else
GTK_EXAMPLES=seek scrubby
GTK_EXAMPLES=scrubby
endif
endif