gstreamer/tests/icles/Makefile.am
Wouter Paesen 34f03fe525 ext/soundtouch/: Make pitch element controllable via GstController interface (#344821).
Original commit message from CVS:
Patch by: Wouter Paesen  <wouter at kangaroot net>
* ext/soundtouch/Makefile.am:
* ext/soundtouch/gstpitch.cc:
Make pitch element controllable via GstController interface
(#344821).
* configure.ac:
Up core requirements to 0.10.8.1/CVS because earlier
GstControllers can't handle float properties correctly.
Check for GstController CFLAGS and LIBS.
* tests/icles/Makefile.am:
* tests/icles/pitch-test.c: (main):
Add small test program for the above (welcome to the 80s!).
2006-06-14 18:07:51 +00:00

29 lines
615 B
Makefile

if USE_GST_V4L2
GST_V4L2_TESTS = v4l2src-test
v4l2src_test_SOURCES = v4l2src-test.c
v4l2src_test_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS)
v4l2src_test_LDADD = $(GST_PLUGINS_BASE_LIBS)
v4l2src_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lgstinterfaces-$(GST_MAJORMINOR)
else
GST_V4L2_TESTS =
endif
if USE_SOUNDTOUCH
GST_SOUNDTOUCH_TESTS = pitch-test
pitch_test_SOURCES = pitch-test.c
pitch_test_CFLAGS = $(GST_CONTROLLER_CFLAGS)
pitch_test_LDADD = $(GST_CONTROLLER_LIBS)
pitch_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
else
GST_SOUNDTOUCH_TESTS =
endif
noinst_PROGRAMS = $(GST_V4L2_TESTS) $(GST_SOUNDTOUCH_TESTS)