summaryrefslogtreecommitdiff
path: root/qpid/packaging/windows/qpidc.wxs
blob: 924e92d20f5bbcb949ac153f7ea6ee4cc0d4eaac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?xml version="1.0" encoding="UTF-8"?>
<!--

 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.

-->

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <Product Id="818aca03-2bed-4baf-8408-361c29e8b6a4"
           Name="Apache Qpid $(var.qpidc_version)"
           Language="1033"
           Version="$(var.qpidc_version).0.0"
           Manufacturer="Apache Software Foundation"
           UpgradeCode="006510A1-3D2F-4fa6-BF23-4F76AD68D6AF">

    <Package Description="Apache Qpid C++ for Windows"
             Manufacturer="Apache Software Foundation"
             Id="*"
             InstallerVersion="200"
             Compressed="yes" />

    <Media Id="1" Cabinet="qpidc.cab" EmbedCab="yes" />

    <!-- Allow 64-bit builds to pick ProgramFiles64Folder instead -->
    <?Define ProgramFiles = "ProgramFilesFolder"?>

    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="$(var.ProgramFiles)">
        <Directory Id="ApacheTop" Name="Apache">
          <Directory Id="INSTALLLOCATION" Name="qpidc-$(var.qpidc_version)">
            <Directory Id="QpidBin"      Name="bin"/>
            <Directory Id="QpidConf"     Name="conf"/>
            <Directory Id="QpidDoc"      Name="docs">
              <Directory Id="QpidDocAPI" Name="api"/>
            </Directory>
            <Directory Id="QpidExamples" Name="examples"/>
            <Directory Id="QpidInclude"  Name="include"/>
            <Directory Id="QpidPlugins"  Name="plugins">
              <Directory Id="QpidBrPlugin" Name="broker"/>
          </Directory>
        </Directory>
      </Directory>
      </Directory>
      <Directory Id="ProgramMenuFolder">
        <Directory Id="ApplicationProgramsFolder" Name="Apache Qpid"/>
      </Directory>

    </Directory>

    <DirectoryRef Id="INSTALLLOCATION">
      <Component Id="InstallNotes" Guid="{10A64ABE-B3F7-40c0-88F1-E0AD71467A3E}">
        <File Id="InstallNotesHTML" Source="INSTALL_NOTES.html"/>
      </Component>
      <Component Id="Legal" Guid="{D98B2A06-4A7E-488a-A7A9-BFB1B9D594A0}">
        <File Id="LICENSE" Source="$(var.staging_dir)\LICENSE"/>
        <File Id="NOTICE"  Source="$(var.staging_dir)\NOTICE"/>
      </Component>
    </DirectoryRef>

    <DirectoryRef Id="QpidBin">
      <Component Id="Broker_Release" Guid="c65883b5-0119-4704-9770-1c3369a8acd7">
        <File Id="BrokerEXE" Source="$(var.staging_dir)\bin\qpidd.exe"/>
        <File Id="BrokerDLL" Source="$(var.staging_dir)\bin\qpidbroker.dll"/>
      </Component>
      <Component Id="CommonLib_Debug" Guid="CE7DDC23-78F9-4DE3-A8BB-9E9652A413DC">
        <File Id="CommonDebugLIB" Source="$(var.staging_dir)\bin\qpidcommond.lib"/>
        <File Id="CommonDebugDLL" Source="$(var.staging_dir)\bin\qpidcommond.dll"/>
        <File Id="CommonDebugPDB" Source="$(var.staging_dir)\bin\qpidcommond.pdb"/>

        <Environment Id="envPath" Separator=";" Action="set" Permanent="no"
                     Name="PATH" System="no" Part="last" Value="[QpidBin]"/>
      </Component>
      <Component Id="CommonLib_Release" Guid="BB2FA938-25CB-498e-A3D8-D6C475B82853">
        <File Id="CommonReleaseLIB" Source="$(var.staging_dir)\bin\qpidcommon.lib"/>
        <File Id="CommonReleaseDLL" Source="$(var.staging_dir)\bin\qpidcommon.dll"/>
        <!-- File Id="CommonReleasePDB" Source="$(var.staging_dir)\bin\qpidcommon.pdb"/ -->
      </Component>
      <Component Id="ClientLib_Debug" Guid="2AB8EA8C-8AD5-4A8E-8CB3-E525A59962A3">
        <File Id="ClientDebugLIB" Source="$(var.staging_dir)\bin\qpidclientd.lib"/>
        <File Id="ClientDebugDLL" Source="$(var.staging_dir)\bin\qpidclientd.dll"/>
        <File Id="ClientDebugPDB" Source="$(var.staging_dir)\bin\qpidclientd.pdb"/>
      </Component>
      <Component Id="ClientLib_Release" Guid="7312671F-CE68-4fac-ACF1-E6D90EA5F070">
        <File Id="ClientReleaseLIB" Source="$(var.staging_dir)\bin\qpidclient.lib"/>
        <File Id="ClientReleaseDLL" Source="$(var.staging_dir)\bin\qpidclient.dll"/>
        <!-- File Id="ClientReleasePDB" Source="$(var.staging_dir)\bin\qpidclient.pdb"/ -->
      </Component>
      <Component Id="ClientWCFDLL" Guid="FF88DEAF-59BC-4846-993A-0D317E094DF4">
        <File Id="ChannelDLL" Source="$(var.staging_dir)\bin\Apache.Qpid.Channel.dll"/>
        <File Id="InteropDLL" Source="$(var.staging_dir)\bin\Apache.Qpid.Interop.dll"/>
        <File Id="XARMDLL" Source="$(var.staging_dir)\bin\qpidxarm.dll"/>
      </Component>

      <Component Id="QMFConsoleLib_Debug" Guid="B5169DDE-B4E8-4c5e-A507-DDFA1DF8DDF8">
        <File Id="QMFConsoleDebugLIB" Source="$(var.staging_dir)\bin\qmfconsoled.lib"/>
        <File Id="QMFConsoleDebugDLL" Source="$(var.staging_dir)\bin\qmfconsoled.dll"/>
        <File Id="QMFConsoleDebugPDB" Source="$(var.staging_dir)\bin\qmfconsoled.pdb"/>
      </Component>
      <Component Id="QMFConsoleLib_Release" Guid="5DD7ADAC-D944-4694-A4F2-0022B7A6931E">
        <File Id="QMFConsoleReleaseLIB" Source="$(var.staging_dir)\bin\qmfconsole.lib"/>
        <File Id="QMFConsoleReleaseDLL" Source="$(var.staging_dir)\bin\qmfconsole.dll"/>
        <!-- File Id="QMFConsoleReleasePDB" Source="$(var.staging_dir)\bin\qmfconsole.pdb"/ -->
      </Component>

    </DirectoryRef>

    <DirectoryRef Id="QpidConf">
      <Component Id="BrokerConf" Guid="{8893D4B8-F87B-4da7-914A-87ED61E46577}">
        <File Id="BrokerConfFile" Source="$(var.staging_dir)\conf\qpidd.conf"/>
      </Component>
      <Component Id="ClientConf" Guid="{2ED5B20C-9D57-4961-B928-6FC1436309F7}">
        <File Id="ClientConfFile" Source="$(var.staging_dir)\conf\qpidc.conf"/>
      </Component>
    </DirectoryRef>

    <DirectoryRef Id="QpidBrPlugin">
      <Component Id="SQLPersistence" Guid="{DDF3AF70-C4E4-4745-BB7E-0E195FAF116B}">
        <File Id="StorePlugin" Source="$(var.staging_dir)\plugins\broker\store.dll"/>
        <File Id="SQLPlugin" Source="$(var.staging_dir)\plugins\broker\mssql_store.dll"/>
      </Component>
    </DirectoryRef>

    <DirectoryRef Id="ApplicationProgramsFolder">
      <Component Id="APIDocShortcut" Guid="{B95A28E2-E2B5-4f31-93C3-24B010701F30}">
        <Shortcut Id="APIDocsShortcut"
                  Name="Qpid C++ Reference Documentation"
                  Description="Shortcut to HTML reference documentation"
                  Target="[INSTALLLOCATION]docs\api\html\index.html" />
        <RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
        <RegistryValue Root="HKCU" Key="Software\Apache\qpidc" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
      </Component>
    </DirectoryRef>

    <Feature Id="ProductFeature" Title="Apache Qpid C++" Level="1"
             Display="expand" ConfigurableDirectory="INSTALLLOCATION"
             TypicalDefault="install">
      <ComponentRef Id="InstallNotes"/>
      <ComponentRef Id="Legal"/>

      <Feature Id="Broker" Title="Broker: Routes and queues messages" Level="1">
        <ComponentRef Id="BrokerConf"/>
        <ComponentRef Id="Broker_Release"/>
        <ComponentRef Id="CommonLib_Release"/>
        <ComponentRef Id="SQLPersistence"/>
	<ComponentGroupRef Id="group_BoostDlls"/>
      </Feature>

      <Feature Id="ClientLib" Title="Client Libraries and Headers to develop and run programs" Level="1">
        <ComponentRef Id="ClientConf"/>
        <ComponentRef Id="CommonLib_Debug"/>
        <ComponentRef Id="CommonLib_Release"/>
        <ComponentRef Id="ClientLib_Debug"/>
        <ComponentRef Id="ClientLib_Release"/>
        <ComponentRef Id="QMFConsoleLib_Debug"/>
        <ComponentRef Id="QMFConsoleLib_Release"/>
        <ComponentRef Id="ClientWCFDLL"/>
        <ComponentGroupRef Id="group_QpidHeaders"/>
	<ComponentGroupRef Id="group_BoostHeaders"/>
        <ComponentGroupRef Id="group_BoostDlls"/>

        <Feature Id="Examples" Title="Client Programming Examples" Level="1">
          <ComponentGroupRef Id="group_Examples"/>
        </Feature>
      </Feature>

      <Feature Id="APIDocs" Title="Client C++ API Reference Documentation" Level="1">
        <ComponentRef Id="APIDocShortcut"/>
        <ComponentGroupRef Id="group_APIDocs"/>
      </Feature>

      <!-- Feature Id="FullDistro" Title="Full C++ Source in a zip file" Level="3">
        <ComponentRef Id="DistroSrc"/>
      </Feature -->
    </Feature>

    <Icon Id="QpidIcon.exe" SourceFile="qpid-icon.ico"/>
    <Property Id="ARPPRODUCTICON" Value="QpidIcon.exe" />
    <Property Id="ALLUSERS" Value="1"/>

    <UI>
      <UIRef Id="WixUI_FeatureTree" />
      <Publish Dialog="ExitDialog"
               Control="Finish" 
               Event="DoAction" 
               Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>

    </UI>

    <WixVariable Id="WixUILicenseRtf" Value="LICENSE.rtf" />
    <WixVariable Id="WixUIBannerBmp" Value="qpid-install-banner.bmp" />
    <WixVariable Id="WixUIDialogBmp" Value="qpid-install-background.bmp" />

    <!-- Launch the install notes optionally on finish -->
    <Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT"
              Value="View the installation notes for more information"/>
    <Property Id='WIXUI_EXITDIALOGOPTIONALCHECKBOX' Value='1' />
    <Property Id="WixShellExecTarget" Value="[#InstallNotesHTML]" />
    <CustomAction Id="LaunchApplication" BinaryKey="WixCA"
                  DllEntry="WixShellExec" Impersonate="yes" />

  </Product>
</Wix>