2ced6b3bcd15113472df261e40232f41585cc861
[shibboleth/cpp-sp.git] / msi / WiX / MergeModules / Zlib-x86.wxs
1 <?xml version='1.0' encoding='utf-8'?>
2 <!-- Licensed to the University Corporation for Advanced Internet
3    Development, Inc. (UCAID) under one or more contributor license
4    agreements.  See the NOTICE file distributed with this work for
5    additional information regarding copyright ownership. The UCAID
6    licenses this file to You under the Apache License, Version 2.0
7    (the "License"); you may not use this file except in compliance
8    with the License.  You may obtain a copy of the License at
9  
10      http://www.apache.org/licenses/LICENSE-2.0
11  
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15    implied.  See the License for the specific language governing
16    permissions and limitations under the License.  -->
17
18 <?include ..\Versions.wxi ?>
19 <?define Zlib32Component='{059557A8-7311-47BB-8A5F-CC85F72AE495}' ?>
20 <?define Zlib32Componentd='{3DA71CD4-F204-49D5-A689-7B1B4C2D395A}' ?>
21
22 <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
23   <Module Id='ZlibMergeModule_x86' Language='1033' Version='$(var.ZlibVersion)'>
24     <Package Id='{F5C689A2-A72F-417E-B0F8-CF9B1450EE97}' Description='Merge Module for Zlib (x86)'
25              Comments='This module is built by the Shibboleth Consortium.'
26              Manufacturer='Shibboleth Consortium' InstallerVersion='300' Platform='x86'/>
27
28     <Directory Id='TARGETDIR' Name='SourceDir'>
29       <Directory Id='ProgramFilesFolder' Name='ProgramFiles'>
30         <Directory Id='shibboleth' Name='Shibboleth'>
31           <Directory Id='shibboleth_sp' Name='SP'>
32             <Directory Id='lib' Name='lib'>
33               <Component Id='zlib1.dll' Guid='$(var.Zlib32Component)'>
34                 <File KeyPath='yes' Checksum='yes'
35                       Source='$(var.BuildDirectory)\zlib-$(var.ZlibVersion)\Release\zlib$(var.ZlibFileVersion).dll'/>
36               </Component>
37               <Directory Id='lib_debug' Name='debug'>
38                 <Component Id='zlib1d.dll' Guid='$(var.Zlib32Componentd)'>
39                   <File KeyPath='yes' Checksum='yes'
40                         Source='$(var.BuildDirectory)\zlib-$(var.ZlibVersion)\Debug\zlib$(var.ZlibFileVersion)d.dll'/>
41                 </Component>
42               </Directory><!-- lib_debug-->
43             </Directory><!-- lib -->
44           </Directory><!-- shibboleth_sp -->
45         </Directory><!-- shibboleth -->
46       </Directory><!-- ProgramFilesFolder -->
47     </Directory><!-- TARGETDIR -->
48   </Module>
49 </Wix>