mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
Fix broken build system for examples.
Original commit message from CVS: Fix broken build system for examples.
This commit is contained in:
parent
8446f92790
commit
5637570cc1
8 changed files with 27 additions and 16 deletions
|
@ -1,10 +1,12 @@
|
||||||
SUBDIRS = include gst libs plugins tools test tests examples docs
|
|
||||||
|
|
||||||
# if libglade is present, build the player and editor
|
# if libglade is present, build the player and editor
|
||||||
if HAVE_LIBGLADE_GNOME
|
if HAVE_LIBGLADE_GNOME
|
||||||
SUBDIRS += gstplay editor
|
SUBDIRS_LGG = gstplay editor
|
||||||
|
else
|
||||||
|
SUBDIRS_LGG =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = include gst libs plugins tools test tests examples docs $(SUBDIRS_LGG)
|
||||||
|
|
||||||
# These are all the possible subdirs
|
# These are all the possible subdirs
|
||||||
DIST_SUBDIRS = include gst libs plugins tools test tests examples docs gstplay editor
|
DIST_SUBDIRS = include gst libs plugins tools test tests examples docs gstplay editor
|
||||||
|
|
||||||
|
|
19
configure.in
19
configure.in
|
@ -538,15 +538,16 @@ test/cothreads/Makefile
|
||||||
tests/Makefile
|
tests/Makefile
|
||||||
tests/sched/Makefile
|
tests/sched/Makefile
|
||||||
examples/Makefile
|
examples/Makefile
|
||||||
examples/autoplug
|
examples/autoplug/Makefile
|
||||||
examples/helloworld
|
examples/helloworld/Makefile
|
||||||
examples/helloworld2
|
examples/helloworld2/Makefile
|
||||||
examples/queue
|
examples/queue/Makefile
|
||||||
examples/queue2
|
examples/queue2/Makefile
|
||||||
examples/queue3
|
examples/queue3/Makefile
|
||||||
examples/queue4
|
examples/queue4/Makefile
|
||||||
examples/thread
|
examples/thread/Makefile
|
||||||
examples/xml
|
examples/xml/Makefile
|
||||||
|
examples/launch/Makefile
|
||||||
editor/Makefile
|
editor/Makefile
|
||||||
tools/Makefile
|
tools/Makefile
|
||||||
docs/Makefile
|
docs/Makefile
|
||||||
|
|
|
@ -1 +1,4 @@
|
||||||
SUBDIRS = autoplug helloworld helloworld2 queue queue2 queue3 queue4 thread xml
|
SUBDIRS = autoplug \
|
||||||
|
helloworld helloworld2 \
|
||||||
|
queue queue2 queue3 queue4 \
|
||||||
|
thread launch xml
|
||||||
|
|
1
examples/launch/Makefile.am
Normal file
1
examples/launch/Makefile.am
Normal file
|
@ -0,0 +1 @@
|
||||||
|
bin_SCRIPTS = mp3play
|
|
@ -1,4 +1,4 @@
|
||||||
bin_PROGRAMS = xml
|
bin_PROGRAMS = runxml createxml
|
||||||
|
|
||||||
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
||||||
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)
|
||||||
|
|
|
@ -1 +1,4 @@
|
||||||
SUBDIRS = autoplug helloworld helloworld2 queue queue2 queue3 queue4 thread xml
|
SUBDIRS = autoplug \
|
||||||
|
helloworld helloworld2 \
|
||||||
|
queue queue2 queue3 queue4 \
|
||||||
|
thread launch xml
|
||||||
|
|
1
tests/old/examples/launch/Makefile.am
Normal file
1
tests/old/examples/launch/Makefile.am
Normal file
|
@ -0,0 +1 @@
|
||||||
|
bin_SCRIPTS = mp3play
|
|
@ -1,4 +1,4 @@
|
||||||
bin_PROGRAMS = xml
|
bin_PROGRAMS = runxml createxml
|
||||||
|
|
||||||
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
||||||
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)
|
||||||
|
|
Loading…
Reference in a new issue