Mercurial > hg > qm-vamp-plugins
changeset 168:ef63227481ff
Add build instructions
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Sun, 28 Sep 2014 10:59:50 +0100 |
parents | 900557ba1059 |
children | bce5c6b0fb44 |
files | BUILD.txt |
diffstat | 1 files changed, 46 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/BUILD.txt Sun Sep 28 10:59:50 2014 +0100 @@ -0,0 +1,46 @@ + +Compiling the QM Vamp Plugins +============================= + +You will need: + + * Command-line compiler tools (for Windows this means MinGW) + * The Vamp Plugin SDK (http://vamp-plugins.org/) + + +Compiling for Linux +------------------- + +Run + +$ make -f build/linux/Makefile.linux64 + +(or Makefile.linux32 for a 32-bit build) + +If the Vamp Plugin SDK headers are not found, edit the Makefile to add +their location as a -I include flag in CXXFLAGS. + + +Compiling for OS/X +------------------ + +Make sure the Vamp Plugin SDK has been compiled in a directory +neighbouring this one (i.e. it lives in ../vamp-plugin-sdk). Run + +$ make -f build/osx/Makefile.osx + + +Compiling for Windows +--------------------- + +Currently only MinGW builds are supported. The Makefile has only been +tested for cross-compiles (from Linux) but it will probably work +building natively too... + +Make sure the Vamp Plugin SDK has been compiled in a directory +neighbouring this one (i.e. it lives in ../vamp-plugin-sdk). Run + +$ gmake -f build/mingw32/Makefile.mingw32 + + +