Browse Source

MSI: give the components being installed GUIDs

master
Reece H. Dunn 9 years ago
parent
commit
73f2f27606
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/windows/installer/Product.wxs

+ 2
- 2
src/windows/installer/Product.wxs View File



<Fragment> <Fragment>
<ComponentGroup Id="CoreComponents" Directory="INSTALLDIR"> <ComponentGroup Id="CoreComponents" Directory="INSTALLDIR">
<Component Id="espeak_ng" Win64="$(var.Win64)">
<Component Id="espeak_ng" Win64="$(var.Win64)" Guid="220D42BC-89CD-4230-A458-CD31285EB152">
<File Id="espeak_ng_exe" Name="$(var.espeak-ng.TargetFileName)" Source="$(var.espeak-ng.TargetPath)" KeyPath="yes"/> <File Id="espeak_ng_exe" Name="$(var.espeak-ng.TargetFileName)" Source="$(var.espeak-ng.TargetPath)" KeyPath="yes"/>
</Component> </Component>
<Component Id="libespeak_ng" Win64="$(var.Win64)">
<Component Id="libespeak_ng" Win64="$(var.Win64)" Guid="AFDF57DE-D7E9-4781-BA0F-5D92FD56B045">
<File Id="libespeak_ng_dll" Name="$(var.libespeak-ng.TargetFileName)" Source="$(var.libespeak-ng.TargetPath)" KeyPath="yes"/> <File Id="libespeak_ng_dll" Name="$(var.libespeak-ng.TargetFileName)" Source="$(var.libespeak-ng.TargetPath)" KeyPath="yes"/>
<RegistryKey Id="espeakngReg" Root="HKLM" Key="SOFTWARE\eSpeak NG" Action="createAndRemoveOnUninstall"> <RegistryKey Id="espeakngReg" Root="HKLM" Key="SOFTWARE\eSpeak NG" Action="createAndRemoveOnUninstall">
<RegistryValue Name="Path" Type="string" Value="[INSTALLDIR]"/> <RegistryValue Name="Path" Type="string" Value="[INSTALLDIR]"/>

Loading…
Cancel
Save