annotate build/msvc/qm-vamp-plugins.wxs @ 266:d04675d44928 tip master

Refer to SDK from Github
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 02 Jun 2021 14:41:26 +0100
parents 9e80b8d7a5c4
children
rev   line source
c@212 1 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
c@212 2
c@212 3 <Product
c@212 4 Name="QM Vamp Plugins"
c@212 5 Id="*"
c@212 6 Language="1033"
c@212 7 Codepage="1252"
cannam@254 8 Version="1.8"
c@212 9 UpgradeCode="7d427a49-7a1e-45d4-a181-c75fe8f489b7"
c@212 10 Manufacturer="Queen Mary, University of London">
c@212 11
c@212 12 <Package
c@212 13 Id="*"
c@212 14 Keywords="Installer"
c@212 15 Description="QM Vamp Plugins 64-bit Installer"
c@212 16 Comments="Copyright (c) 2018 Queen Mary, University of London"
c@212 17 Manufacturer="Queen Mary, University of London"
c@212 18 InstallerVersion="200"
c@212 19 Languages="1033"
c@212 20 Compressed="yes"
c@212 21 Platform="x64"
c@212 22 SummaryCodepage="1252"/>
c@212 23
c@212 24 <MajorUpgrade DowngradeErrorMessage="A later version of the QM Vamp Plugins set is already installed. Setup will now exit."/>
c@212 25
c@212 26 <Media Id="1" Cabinet="QMVampPlugins.cab" EmbedCab="yes" DiskPrompt="CD-ROM #1"/>
c@212 27 <Property Id="DiskPrompt" Value="QM Vamp Plugins Installation [1]"/>
c@212 28
c@212 29 <Directory Id="TARGETDIR" Name="SourceDir">
c@212 30
c@212 31 <Directory Id="ProgramFiles64Folder" Name="PFiles64">
c@212 32 <Directory Id="VampPlugins" Name="Vamp Plugins">
c@212 33
c@212 34 <Component Win64="yes"
c@212 35 Id="Plugin64"
c@212 36 Guid="7df55391-7d82-4f4f-a4e1-e0bba6b339fc">
c@212 37 <File
c@212 38 Id="README64"
c@212 39 Name="qm-vamp-plugins-README.txt"
c@212 40 Source="..\general\README.txt"/>
c@212 41 <File
c@212 42 Id="COPYING64"
c@212 43 Name="qm-vamp-plugins-COPYING.txt"
c@212 44 Source="..\..\COPYING"/>
c@212 45 <File
c@212 46 Id="Cat64"
c@212 47 Name="qm-vamp-plugins.cat"
c@212 48 Source="..\..\qm-vamp-plugins.cat"/>
c@212 49 <File
c@212 50 Id="Turtle64"
c@212 51 Name="qm-vamp-plugins.n3"
c@212 52 Source="..\..\qm-vamp-plugins.n3"/>
c@212 53 <File
c@212 54 Id="PluginLibrary64"
c@212 55 Name="qm-vamp-plugins.dll"
c@212 56 Source="x64\Release\qm-vamp-plugins.dll"/>
c@212 57 </Component>
c@212 58
c@212 59 </Directory> <!-- vamp -->
c@212 60 </Directory> <!-- pfiles64 -->
c@212 61
c@212 62 <Directory Id="ProgramFilesFolder" Name="PFiles">
c@212 63 <Directory Id="Vamp32Plugins" Name="Vamp Plugins">
c@212 64
c@212 65 <Component
c@212 66 Id="Plugin32"
c@212 67 Guid="9401a7ab-f3fa-499e-bb51-2231707daf7c">
c@212 68 <File
c@212 69 Id="README32"
c@212 70 Name="qm-vamp-plugins-README.txt"
c@212 71 Source="..\general\README.txt"/>
c@212 72 <File
c@212 73 Id="COPYING32"
c@212 74 Name="qm-vamp-plugins-COPYING.txt"
c@212 75 Source="..\..\COPYING"/>
c@212 76 <File
c@212 77 Id="Cat32"
c@212 78 Name="qm-vamp-plugins.cat"
c@212 79 Source="..\..\qm-vamp-plugins.cat"/>
c@212 80 <File
c@212 81 Id="Turtle32"
c@212 82 Name="qm-vamp-plugins.n3"
c@212 83 Source="..\..\qm-vamp-plugins.n3"/>
c@212 84 <File
c@212 85 Id="PluginLibrary32"
c@212 86 Name="qm-vamp-plugins.dll"
c@212 87 Source="Release\qm-vamp-plugins.dll"/>
c@212 88 </Component>
c@212 89
c@212 90 </Directory>
c@212 91 </Directory>
c@212 92
c@212 93 </Directory>
c@212 94
c@212 95 <Feature
c@212 96 Id="Complete"
c@212 97 Title="Required files"
c@212 98 Description="Installs the required files for the QM Vamp Plugins."
c@212 99 AllowAdvertise="no"
c@212 100 Absent="disallow"
c@212 101 Level="1">
c@212 102 <ComponentRef Id="Plugin64"/>
c@212 103 <ComponentRef Id="Plugin32"/>
c@212 104 </Feature>
c@212 105
c@212 106 <UI>
c@212 107 <UIRef Id="WixUI_Minimal" />
c@212 108 <UIRef Id="WixUI_ErrorProgressText" />
c@212 109 </UI>
c@212 110
c@212 111 <Property Id="WIXUI_DONTVALIDATEPATH" Value="1" />
c@212 112 <Property Id="WixAppFolder" Value="WixPerMachineFolder" />
c@212 113 <WixVariable Id="WixUILicenseRtf" Value="License.rtf" />
c@212 114
c@212 115 <Icon Id="winicon.ico" SourceFile="sv-winicon.ico"/>
c@212 116 <Property Id="ARPPRODUCTICON" Value="winicon.ico" />
c@212 117
c@212 118 <WixVariable Id="WixUIBannerBmp" Value="top.bmp"/>
c@212 119 <WixVariable Id="WixUIDialogBmp" Value="main.bmp"/>
c@212 120
c@212 121 </Product>
c@212 122 </Wix>
c@212 123