build_win32.sh: added script for msvc
authorPaul Brossier <piem@piem.org>
Sun, 24 Jul 2016 20:59:06 +0000 (22:59 +0200)
committerPaul Brossier <piem@piem.org>
Sun, 24 Jul 2016 20:59:06 +0000 (22:59 +0200)
build_win32.sh [new file with mode: 0755]

diff --git a/build_win32.sh b/build_win32.sh
new file mode 100755 (executable)
index 0000000..7426348
--- /dev/null
@@ -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