diff options
Diffstat (limited to 'tests/examples/equalizer')
-rw-r--r-- | tests/examples/equalizer/.gitignore | 1 | ||||
-rw-r--r-- | tests/examples/equalizer/Makefile.am | 8 |
2 files changed, 9 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) + |