blob: 0b3fbc00c4a35db8a22405bc8ead60289ab5970d [file] [log] [blame]
Steve Dowerbb240872015-02-05 22:08:48 -08001<?xml version="1.0"?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 <Fragment>
4 <PackageGroup Id="lib">
5 <MsiPackage Id="lib_AllUsers"
6 SourceFile="lib.msi"
7 Compressed="$(var.CompressMSI)"
8 DownloadUrl="$(var.DownloadUrl)"
9 ForcePerMachine="yes"
Steve Dowera3d03ec2015-07-18 09:27:52 -070010 InstallCondition="InstallAllUsers and Include_lib and not LauncherOnly">
Steve Dowerbb240872015-02-05 22:08:48 -080011 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
Steve Dower49437492015-07-08 20:18:44 -070012 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
Steve Dowerbb240872015-02-05 22:08:48 -080013 </MsiPackage>
14 <MsiPackage Id="lib_AllUsers_pdb"
15 SourceFile="lib_pdb.msi"
16 Compressed="$(var.CompressPDB)"
17 DownloadUrl="$(var.DownloadUrl)"
18 ForcePerMachine="yes"
Steve Dowera3d03ec2015-07-18 09:27:52 -070019 InstallCondition="InstallAllUsers and Include_lib and Include_symbols and not LauncherOnly">
Steve Dowerbb240872015-02-05 22:08:48 -080020 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
Steve Dower49437492015-07-08 20:18:44 -070021 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
Steve Dowerbb240872015-02-05 22:08:48 -080022 </MsiPackage>
23 <MsiPackage Id="lib_AllUsers_d"
24 SourceFile="lib_d.msi"
25 Compressed="$(var.CompressMSI_D)"
26 DownloadUrl="$(var.DownloadUrl)"
27 ForcePerMachine="yes"
Steve Dowera3d03ec2015-07-18 09:27:52 -070028 InstallCondition="InstallAllUsers and Include_lib and Include_debug and not LauncherOnly">
Steve Dowerbb240872015-02-05 22:08:48 -080029 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
Steve Dower49437492015-07-08 20:18:44 -070030 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
Steve Dowerbb240872015-02-05 22:08:48 -080031 </MsiPackage>
32
33 <MsiPackage Id="lib_JustForMe"
34 SourceFile="lib.msi"
35 Compressed="$(var.CompressMSI)"
36 DownloadUrl="$(var.DownloadUrl)"
37 ForcePerMachine="no"
Steve Dowera3d03ec2015-07-18 09:27:52 -070038 InstallCondition="not InstallAllUsers and Include_lib and not LauncherOnly">
Steve Dowerbb240872015-02-05 22:08:48 -080039 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
Steve Dower49437492015-07-08 20:18:44 -070040 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
Steve Dowerbb240872015-02-05 22:08:48 -080041 </MsiPackage>
42 <MsiPackage Id="lib_JustForMe_pdb"
43 SourceFile="lib_pdb.msi"
44 Compressed="$(var.CompressPDB)"
45 DownloadUrl="$(var.DownloadUrl)"
46 ForcePerMachine="no"
Steve Dowera3d03ec2015-07-18 09:27:52 -070047 InstallCondition="not InstallAllUsers and Include_lib and Include_symbols and not LauncherOnly">
Steve Dowerbb240872015-02-05 22:08:48 -080048 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
Steve Dower49437492015-07-08 20:18:44 -070049 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
Steve Dowerbb240872015-02-05 22:08:48 -080050 </MsiPackage>
51 <MsiPackage Id="lib_JustForMe_d"
52 SourceFile="lib_d.msi"
53 Compressed="$(var.CompressMSI_D)"
54 DownloadUrl="$(var.DownloadUrl)"
55 ForcePerMachine="no"
Steve Dowera3d03ec2015-07-18 09:27:52 -070056 InstallCondition="not InstallAllUsers and Include_lib and Include_debug and not LauncherOnly">
Steve Dowerbb240872015-02-05 22:08:48 -080057 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
Steve Dower49437492015-07-08 20:18:44 -070058 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
Steve Dowerbb240872015-02-05 22:08:48 -080059 </MsiPackage>
60 </PackageGroup>
61 </Fragment>
62</Wix>