From: Paul Brossier Date: Tue, 10 Dec 2013 20:59:27 +0000 (-0500) Subject: src/wscript_build: move jack to examples X-Git-Tag: 0.4.0~32 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=ed090ff7c9eb775fd565c635b2b90f62fa1fe719;p=aubio.git src/wscript_build: move jack to examples Signed-off-by: Paul Brossier --- diff --git a/examples/wscript_build b/examples/wscript_build index 6e5ace8e..68b6ead5 100644 --- a/examples/wscript_build +++ b/examples/wscript_build @@ -1,5 +1,8 @@ # vim:set syntax=python: +uselib = [] +uselib += ['JACK'] + utils_source = ['utils.c', 'jackio.c'] programs_source = ctx.path.ant_glob('*.c', excl = utils_source) @@ -7,6 +10,7 @@ programs_source = ctx.path.ant_glob('*.c', excl = utils_source) bld(features = 'c', source = utils_source, includes = ['../src'], + uselib = uselib, target = 'utilsio') # loop over all *.c filenames in examples to build them all diff --git a/src/wscript_build b/src/wscript_build index 2bf8261b..34da641f 100644 --- a/src/wscript_build +++ b/src/wscript_build @@ -9,7 +9,6 @@ uselib += ['AVCODEC'] uselib += ['AVFORMAT'] uselib += ['AVRESAMPLE'] uselib += ['AVUTIL'] -uselib += ['JACK'] ctx(features = 'c', source = source,