examples/wscript_build: link against libaubio
authorPaul Brossier <piem@piem.org>
Mon, 2 May 2016 13:31:41 +0000 (15:31 +0200)
committerPaul Brossier <piem@piem.org>
Mon, 2 May 2016 13:31:41 +0000 (15:31 +0200)
examples/wscript_build

index 5cbfb33..a9aec76 100644 (file)
@@ -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']