From: Paul Brossier Date: Mon, 2 May 2016 13:31:41 +0000 (+0200) Subject: examples/wscript_build: link against libaubio X-Git-Tag: 0.4.4~300^2~137 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=36e95674abbe047c1e36451b8ff95da6728bfeaa;p=aubio.git examples/wscript_build: link against libaubio --- diff --git a/examples/wscript_build b/examples/wscript_build index 5cbfb335..a9aec764 100644 --- a/examples/wscript_build +++ b/examples/wscript_build @@ -1,6 +1,7 @@ # vim:set syntax=python: -lib = 'm' if 'CL.exe' not in ctx.env.CC[0] else None +lib = ['aubio'] +lib += ['m'] if 'CL.exe' not in ctx.env.CC[0] else [] uselib = [] uselib += ['FFTW3', 'FFTW3F']