From b5dcc8a44e049efd8e6f2c2035618c21dd643046 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 22 Jul 2016 05:33:28 +0200 Subject: [PATCH] scripts/get_aubio.sh: use get_waf.sh, add windows options --- scripts/get_aubio.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/get_aubio.sh b/scripts/get_aubio.sh index bf53acb..72a0539 100755 --- a/scripts/get_aubio.sh +++ b/scripts/get_aubio.sh @@ -3,15 +3,17 @@ set -e set -x +which cl.exe && WAFOPTS='--msvc_version="msvc 12.0" --msvc_target="x86"' + mkdir -p contrib pushd contrib git clone https://github.com/aubio/aubio aubio || ( pushd aubio; git pull; popd ) #rm -rf aubio pushd aubio -make getwaf +./scripts/get_waf.sh #./waf distclean -./waf configure --prefix=$PWD/../aubio-dist --disable-atlas +./waf configure --prefix=$PWD/../aubio-dist --disable-atlas $WAFOPTS ./waf build -v ./waf install -v popd -- 2.11.0