src/wscript_build: move jack to examples
authorPaul Brossier <piem@piem.org>
Tue, 10 Dec 2013 20:59:27 +0000 (15:59 -0500)
committerPaul Brossier <piem@piem.org>
Tue, 10 Dec 2013 20:59:27 +0000 (15:59 -0500)
Signed-off-by: Paul Brossier <piem@piem.org>
examples/wscript_build
src/wscript_build

index 6e5ace8..68b6ead 100644 (file)
@@ -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
index 2bf8261..34da641 100644 (file)
@@ -9,7 +9,6 @@ uselib += ['AVCODEC']
 uselib += ['AVFORMAT']
 uselib += ['AVRESAMPLE']
 uselib += ['AVUTIL']
-uselib += ['JACK']
 
 ctx(features = 'c',
       source = source,