From 9388e8130e03ae3aa39651b08ca66a4c2a50e130 Mon Sep 17 00:00:00 2001 From: sletz Date: Mon, 26 May 2008 16:04:52 +0000 Subject: [PATCH] Add jack_rec client in SConscript git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2350 0c269be4-1314-0410-8aa9-9f06e86f4224 --- example-clients/SConscript | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/example-clients/SConscript b/example-clients/SConscript index 19e3da3b..341ec3e4 100644 --- a/example-clients/SConscript +++ b/example-clients/SConscript @@ -68,6 +68,12 @@ if env['HAS_READLINE']: example_programs['jack_transport'] = 'transport.c' extra_libs['jack_transport'] = ['readline', 'jack', 'ncurses'] +# TODO: we need to test for SNDFILE... +env['HAS_SNDFILE']=True +if env['HAS_SNDFILE']: + example_programs['jack_rec'] = 'capture_client.c' + extra_libs['jack_rec'] = ['sndfile', 'jack'] + # # Build/install section #