# HG changeset patch # User Paul Brossier # Date 1469158408 -7200 # Node ID 1b8362fd90b119e1a35448834e56f5b17c682ca5 # Parent bd702824a01d25bd3eeb6bc449b401b1433f7144 scripts/get_aubio.sh: use get_waf.sh, add windows options diff -r bd702824a01d -r 1b8362fd90b1 scripts/get_aubio.sh --- a/scripts/get_aubio.sh Fri Jul 22 05:25:33 2016 +0200 +++ b/scripts/get_aubio.sh Fri Jul 22 05:33:28 2016 +0200 @@ -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