From: Paul Brossier Date: Thu, 17 Oct 2013 12:10:33 +0000 (+0200) Subject: examples/wscript_build: simplify X-Git-Tag: 0.4.0-beta1~110^2~2 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c52b4833bd21d4e80f6a4924031a71ab3d94f9ad;p=aubio.git examples/wscript_build: simplify --- diff --git a/examples/wscript_build b/examples/wscript_build index 9f797e04..1ef6387a 100644 --- a/examples/wscript_build +++ b/examples/wscript_build @@ -13,7 +13,7 @@ for source_file in ctx.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c']): bld.program(features = 'c cprogram', includes = '../src', lib = 'm', - use = ['aubio', 'FFTW3F', 'FFTW3', 'SNDFILE', 'JACK', 'LASH', 'SAMPLERATE', 'utilsio'], + use = ['aubio', 'utilsio'], source = str(source_file), target = str(source_file).split('.')[0] )