Mercurial > hg > vamp-aubio-plugins
annotate build_win32.sh @ 167:290ecca2d3f4
build_win32.sh: added script for msvc
author | Paul Brossier <piem@piem.org> |
---|---|
date | Sun, 24 Jul 2016 22:59:06 +0200 |
parents | |
children | 3bc50a5ba12f |
rev | line source |
---|---|
piem@167 | 1 #! /bin/sh |
piem@167 | 2 |
piem@167 | 3 # instructions to build vamp-aubio-plugins for mac os x |
piem@167 | 4 |
piem@167 | 5 # get waf |
piem@167 | 6 sh scripts/get_waf.sh |
piem@167 | 7 |
piem@167 | 8 # fetch Vamp SDK |
piem@167 | 9 sh scripts/get_deps_msvc.sh |
piem@167 | 10 |
piem@167 | 11 # fetch and build aubio |
piem@167 | 12 sh scripts/get_aubio.sh |
piem@167 | 13 |
piem@167 | 14 # configure and build plugin |
piem@167 | 15 python waf configure |
piem@167 | 16 |
piem@167 | 17 python waf build -v |
piem@167 | 18 |
piem@167 | 19 # install in user's home directory |
piem@167 | 20 # ./waf install --destdir=$HOME |
piem@167 | 21 |
piem@167 | 22 # system-wide installation |
piem@167 | 23 # sudo ./waf install |
piem@167 | 24 |
piem@167 | 25 python waf install --destdir=dist |