summaryrefslogtreecommitdiff
path: root/packaging/WiX/mysql_server.wxs.in
blob: a4289195d47185d8af3f750c51009358deace79d (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
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <Product Id="*" UpgradeCode="49EB7A6A-1CEF-4A1E-9E89-B9A4993963E3"
    Name="MySQL Server @MAJOR_VERSION@.@MINOR_VERSION@" Version="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH@" Language="1033" Manufacturer="MySQL AB">
    <Package Id='*' Keywords='Installer' Description="MySQL Database Server"
       Manufacturer='MySQL AB'
       InstallerVersion='310' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
    <Media Id='1' Cabinet='product.cab' EmbedCab='yes' />
    <Directory Id='TARGETDIR' Name='SourceDir'>
      <Directory Id='ProgramFilesFolder'>
        <Directory Id='directory.MySQL' Name='MySQL'>
          <Directory Id='INSTALLDIR' Name='MySQL Server @MAJOR_VERSION@.@MINOR_VERSION@'>
          </Directory>
        </Directory>
      </Directory>
    </Directory>
    <Feature  Id='Server' Level='1' Title="MySQL Server" Description="Install MySQL server" Display="expand">
      <ComponentGroupRef Id='componentgroup.Server'/>
      <Feature Level='1' Id='ClientPrograms' Title="Client Programs"  Description="Various helpful (commandline) tools including the mysql command line client" >
         <ComponentGroupRef Id="componentgroup.Client" />
       </Feature>
    </Feature>
    <Feature Id='Devel' Level='1' Title="Development Components"
             Description="Installs C/C++ header files and libraries">
      <ComponentGroupRef Id='componentgroup.Development' />
    </Feature>
    <UIRef Id="WixUI_FeatureTree" />
    <UIRef Id="WixUI_ErrorProgressText" />
    <WixVariable Id="WixUIBannerBmp" Value="@CMAKE_CURRENT_SOURCE_DIR@/AdminHeader.jpg" />
    <WixVariable Id="WixUIDialogBmp" Value="@CMAKE_CURRENT_SOURCE_DIR@/AdminBackground.jpg" />
  </Product>
</Wix>