From: Paul Brossier Date: Mon, 2 May 2016 13:33:02 +0000 (+0200) Subject: tests/wscript_build: link against libaubio X-Git-Tag: 0.4.4~300^2~136 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=7e9c67d6d12f148e9c68bbfa972a8328f6a9c16f tests/wscript_build: link against libaubio --- diff --git a/tests/wscript_build b/tests/wscript_build index 1d081824..db9c8058 100644 --- a/tests/wscript_build +++ b/tests/wscript_build @@ -1,6 +1,8 @@ # 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 [] + cflags = ['-g'] if 'CL.exe' not in ctx.env.CC[0] else None uselib = []