From 30d6efc9c47302b8d95b3c5dee976c82253016e6 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 24 Jul 2016 22:59:06 +0200 Subject: [PATCH] build_win32.sh: added script for msvc --- build_win32.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 build_win32.sh diff --git a/build_win32.sh b/build_win32.sh new file mode 100755 index 0000000..7426348 --- /dev/null +++ b/build_win32.sh @@ -0,0 +1,25 @@ +#! /bin/sh + +# instructions to build vamp-aubio-plugins for mac os x + +# get waf +sh scripts/get_waf.sh + +# fetch Vamp SDK +sh scripts/get_deps_msvc.sh + +# fetch and build aubio +sh scripts/get_aubio.sh + +# configure and build plugin +python waf configure + +python waf build -v + +# install in user's home directory +# ./waf install --destdir=$HOME + +# system-wide installation +# sudo ./waf install + +python waf install --destdir=dist -- 2.11.0