/win32/wix/doc.wxs

https://bitbucket.org/tortoisehg/hgtk/ · WiX source · 50 lines · 46 code · 4 blank · 0 comment · 0 complexity · 2bf132bdefbdb5d6e05c5bc99dba33d1 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  3. <?include guids.wxi ?>
  4. <?include defines.wxi ?>
  5. <Fragment>
  6. <ComponentGroup Id="docFolder">
  7. <ComponentRef Id="doc.hg.1.html" />
  8. <ComponentRef Id="doc.hgignore.5.html" />
  9. <ComponentRef Id="doc.hgrc.5.html" />
  10. <ComponentRef Id="doc.style.css" />
  11. </ComponentGroup>
  12. </Fragment>
  13. <Fragment>
  14. <DirectoryRef Id="INSTALLDIR">
  15. <Directory Id="docdir" Name="doc" FileSource="$(var.SourceDir)">
  16. <Component Id="doc.hg.1.html" Guid="$(var.doc.hg.1.html.guid)" Win64='$(var.IsX64)'>
  17. <File Name="hg.1.html" KeyPath="yes">
  18. <Shortcut Id="hg1StartMenu" Directory="ProgramMenuDir"
  19. Name="Mercurial Command Reference"
  20. Icon="hgIcon.ico" IconIndex="0" Advertise="yes"
  21. />
  22. </File>
  23. </Component>
  24. <Component Id="doc.hgignore.5.html" Guid="$(var.doc.hgignore.5.html.guid)" Win64='$(var.IsX64)'>
  25. <File Name="hgignore.5.html" KeyPath="yes">
  26. <Shortcut Id="hgignore5StartMenu" Directory="ProgramMenuDir"
  27. Name="Mercurial Ignore Files"
  28. Icon="hgIcon.ico" IconIndex="0" Advertise="yes"
  29. />
  30. </File>
  31. </Component>
  32. <Component Id="doc.hgrc.5.html" Guid="$(var.doc.hgrc.5.html)" Win64='$(var.IsX64)'>
  33. <File Name="hgrc.5.html" KeyPath="yes">
  34. <Shortcut Id="hgrc5StartMenu" Directory="ProgramMenuDir"
  35. Name="Mercurial Configuration Files"
  36. Icon="hgIcon.ico" IconIndex="0" Advertise="yes"
  37. />
  38. </File>
  39. </Component>
  40. <Component Id="doc.style.css" Guid="$(var.doc.style.css)" Win64='$(var.IsX64)'>
  41. <File Name="style.css" KeyPath="yes" />
  42. </Component>
  43. </Directory>
  44. </DirectoryRef>
  45. </Fragment>
  46. </Wix>