summaryrefslogtreecommitdiff
path: root/packaging/WiX/extra.wxs.in
blob: b1286bfba6118959069069ee5750fd9b57f628bc (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
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <Fragment>
    <DirectoryRef Id="INSTALLDIR">
      <Component Id="RegKeys" Guid="*">
        <RegistryKey
          Id='MySQLKey'
          Root='HKLM'
          Key='SOFTWARE\MySQL AB\[ProductName]'
          Action='createAndRemoveOnUninstall'>
          <RegistryValue
            Type='string'
            Name='Location'
            Value='[INSTALLDIR]'/>
          <RegistryValue
            Type="string"
            Name="Version"
            Value="[ProductVersion]"/>
          <RegistryValue
            Type="string"
            Name="DataLocation"
            Value="[DATADIR]"/>
        </RegistryKey>
      </Component>
    </DirectoryRef>
    <Feature
      Id='RegKeys'
      Display='hidden'
      Level='1'>
      <ComponentRef Id='RegKeys'/>
    </Feature>
  </Fragment>
</Wix>