ref: 7e9c67d6d12f148e9c68bbfa972a8328f6a9c16f
parent: 36e95674abbe047c1e36451b8ff95da6728bfeaa
author: Paul Brossier <piem@piem.org>
date: Mon May 2 11:33:02 EDT 2016
tests/wscript_build: link against libaubio
--- 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 = []