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