From ed090ff7c9eb775fd565c635b2b90f62fa1fe719 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 10 Dec 2013 15:59:27 -0500 Subject: [PATCH] src/wscript_build: move jack to examples Signed-off-by: Paul Brossier --- examples/wscript_build | 4 ++++ src/wscript_build | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) 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, -- 2.11.0