# HG changeset patch # User Chris Cannam # Date 1524835646 -3600 # Node ID 9b858df4e8b0a86f8f2ef0d42f347c13ba3cee0f # Parent 47105e880e90bb6af879cd87fddd24452c51e261 Windows installer build files diff -r 47105e880e90 -r 9b858df4e8b0 .hgignore --- a/.hgignore Fri Apr 27 10:55:12 2018 +0100 +++ b/.hgignore Fri Apr 27 14:27:26 2018 +0100 @@ -4,9 +4,12 @@ *.obj *.so *.dll +*.msi glob:.vext-*.bin build/msvc/Debug build/msvc/Release build/msvc/x64/Debug build/msvc/x64/Release re:^build/mingw32/x64/Release/ +.vs +*.db diff -r 47105e880e90 -r 9b858df4e8b0 build/general/README.txt --- a/build/general/README.txt Fri Apr 27 10:55:12 2018 +0100 +++ b/build/general/README.txt Fri Apr 27 14:27:26 2018 +0100 @@ -91,13 +91,8 @@ To Install ========== -Installation depends on your operating system. - - Win 32 -> Copy qm-vamp-plugins.dll, qm-vamp-plugins.cat and - qm-vamp-plugins.n3 to C:\Program Files\Vamp Plugins\ - - Win 64 -> Copy qm-vamp-plugins.dll, qm-vamp-plugins.cat and - qm-vamp-plugins.n3 to C:\Program Files\Vamp Plugins (x86)\ +Installation depends on your operating system and (on Windows) whether +you are installing a 32- or 64-bit version of the plugin set. OS/X -> Copy qm-vamp-plugins.dylib, qm-vamp-plugins.cat and qm-vamp-plugins.n3 to $HOME/Library/Audio/Plug-Ins/Vamp/ @@ -107,3 +102,12 @@ qm-vamp-plugins.n3 to $HOME/vamp/ or /usr/local/lib/vamp/ or /usr/lib/vamp/ + 32-bit Windows with 32-bit plugin set, or + 64-bit Windows with 64-bit plugin set + -> Copy qm-vamp-plugins.dll, qm-vamp-plugins.cat and + qm-vamp-plugins.n3 to C:\Program Files\Vamp Plugins\ + + 64-bit Windows with 32-bit plugin set + -> Copy qm-vamp-plugins.dll, qm-vamp-plugins.cat and + qm-vamp-plugins.n3 to C:\Program Files\Vamp Plugins (x86)\ + diff -r 47105e880e90 -r 9b858df4e8b0 build/msvc/License.rtf Binary file build/msvc/License.rtf has changed diff -r 47105e880e90 -r 9b858df4e8b0 build/msvc/build.cmd --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build/msvc/build.cmd Fri Apr 27 14:27:26 2018 +0100 @@ -0,0 +1,11 @@ +@ECHO OFF +SET WIXPATH="C:\Program Files (x86)\WiX Toolset v3.11\bin" +IF NOT EXIST %WIXPATH% ( + SET WIXPATH="C:\Program Files\WiX Toolset v3.11\bin" +) +DEL qm-vamp-plugins.msi +%WIXPATH%\candle.exe -v qm-vamp-plugins.wxs +%WIXPATH%\light.exe -ext WixUIExtension -v qm-vamp-plugins.wixobj +PAUSE +DEL qm-vamp-plugins.wixobj +DEL qm-vamp-plugins.wixpdb diff -r 47105e880e90 -r 9b858df4e8b0 build/msvc/main.bmp Binary file build/msvc/main.bmp has changed diff -r 47105e880e90 -r 9b858df4e8b0 build/msvc/qm-vamp-plugins.wxs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build/msvc/qm-vamp-plugins.wxs Fri Apr 27 14:27:26 2018 +0100 @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 47105e880e90 -r 9b858df4e8b0 build/msvc/sv-winicon.ico Binary file build/msvc/sv-winicon.ico has changed diff -r 47105e880e90 -r 9b858df4e8b0 build/msvc/top.bmp Binary file build/msvc/top.bmp has changed