summaryrefslogtreecommitdiffstats
path: root/tests/examples
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2008-02-08 10:09:33 +0000
committerTim-Philipp Müller <tim@centricular.net>2008-02-08 10:09:33 +0000
commit0e176540b5678db0b88d517138d42292290e4895 (patch)
tree64df379b5ce7052941a9af0a3d7a3ee0b6676461 /tests/examples
parent26a52d2733997ec5f09f10ba45cfefc3beffdd80 (diff)
gst/multifile/gstmultifilesrc.c: Need to use gsize here for the size, fixes compiler warning.
Original commit message from CVS: * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create): Need to use gsize here for the size, fixes compiler warning. * tests/examples/equalizer/.cvsignore: * tests/examples/equalizer/Makefile.am: * tests/examples/spectrum/.cvsignore: * tests/examples/spectrum/Makefile.am: Add missing files to fix the build.
Diffstat (limited to 'tests/examples')
-rw-r--r--tests/examples/equalizer/.gitignore1
-rw-r--r--tests/examples/equalizer/Makefile.am8
-rw-r--r--tests/examples/spectrum/.gitignore2
-rw-r--r--tests/examples/spectrum/Makefile.am12
4 files changed, 23 insertions, 0 deletions
diff --git a/tests/examples/equalizer/.gitignore b/tests/examples/equalizer/.gitignore
new file mode 100644
index 00000000..1549b67c
--- /dev/null
+++ b/tests/examples/equalizer/.gitignore
@@ -0,0 +1 @@
+demo
diff --git a/tests/examples/equalizer/Makefile.am b/tests/examples/equalizer/Makefile.am
new file mode 100644
index 00000000..54c6dc58
--- /dev/null
+++ b/tests/examples/equalizer/Makefile.am
@@ -0,0 +1,8 @@
+if HAVE_GTK
+noinst_PROGRAMS = demo
+endif
+
+demo_SOURCES = demo.c
+demo_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
+demo_LDFLAGS = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
+
diff --git a/tests/examples/spectrum/.gitignore b/tests/examples/spectrum/.gitignore
new file mode 100644
index 00000000..d1d65d58
--- /dev/null
+++ b/tests/examples/spectrum/.gitignore
@@ -0,0 +1,2 @@
+demo-audiotest
+demo-osssrc
diff --git a/tests/examples/spectrum/Makefile.am b/tests/examples/spectrum/Makefile.am
new file mode 100644
index 00000000..0fd2ef17
--- /dev/null
+++ b/tests/examples/spectrum/Makefile.am
@@ -0,0 +1,12 @@
+if HAVE_GTK
+noinst_PROGRAMS = demo-osssrc demo-audiotest
+endif
+
+demo_osssrc_SOURCES = demo-osssrc.c
+demo_osssrc_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
+demo_osssrc_LDFLAGS = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
+
+demo_audiotest_SOURCES = demo-audiotest.c
+demo_audiotest_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
+demo_audiotest_LDFLAGS = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
+