installer/psqlodbc-setup/Bundle.wxs (31 lines of code) (raw):
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle Name="awspsqlodbc"
Version="$(var.VERSION)"
Manufacturer="Amazon.com, Inc. or its affiliates"
UpgradeCode="ce0f2014-8354-4497-9b94-b93fbe82fbf5">
<BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.RtfLicense">
<bal:WixStandardBootstrapperApplication
SuppressOptionsUI="yes"
ShowVersion="yes"
LicenseFile="..\lgpl.rtf"
/>
</BootstrapperApplicationRef>
<Chain>
<!-- TODO: Define the list of chained packages. -->
<?if $(var.withRedist) = yes ?>
<PackageGroupRef Id="vcredist"/>
<?endif ?>
<?ifndef var.INSTBASE ?>
<?define INSTBASE = ".."?>
<?endif ?>
<MsiPackage SourceFile="$(var.INSTBASE)\x86\awspsqlodbc_x86.msi"
DisplayInternalUI="$(var.withUI)" />
<MsiPackage SourceFile="$(var.INSTBASE)\x64\awspsqlodbc_x64.msi"
DisplayInternalUI="$(var.withUI)"
InstallCondition="VersionNT64" />
</Chain>
</Bundle>
</Wix>