equal
deleted
inserted
replaced
|
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="contribFolder"> |
|
9 <ComponentRef Id="contrib" /> |
|
10 <ComponentRef Id="contrib.vim" /> |
|
11 </ComponentGroup> |
|
12 </Fragment> |
|
13 |
|
14 <Fragment> |
|
15 <DirectoryRef Id="INSTALLDIR"> |
|
16 <Directory Id="contribdir" Name="contrib" FileSource="$(var.SourceDir)"> |
|
17 <Component Id="contrib" Guid="$(var.contrib.guid)" Win64='$(var.IsX64)'> |
|
18 <File Name="bash_completion" KeyPath="yes" /> |
|
19 <File Name="hgk" /> |
|
20 <File Name="hgweb.fcgi" /> |
|
21 <File Name="hgweb.wsgi" /> |
|
22 <File Name="logo-droplets.svg" /> |
|
23 <File Name="mercurial.el" /> |
|
24 <File Name="tcsh_completion" /> |
|
25 <File Name="tcsh_completion_build.sh" /> |
|
26 <File Name="xml.rnc" /> |
|
27 <File Name="zsh_completion" /> |
|
28 </Component> |
|
29 <Directory Id="vimdir" Name="vim"> |
|
30 <Component Id="contrib.vim" Guid="$(var.contrib.vim.guid)" Win64='$(var.IsX64)'> |
|
31 <File Name="hg-menu.vim" KeyPath="yes" /> |
|
32 <File Name="HGAnnotate.vim" /> |
|
33 <File Name="hgcommand.vim" /> |
|
34 <File Name="patchreview.txt" /> |
|
35 <File Name="patchreview.vim" /> |
|
36 <File Name="hgtest.vim" /> |
|
37 </Component> |
|
38 </Directory> |
|
39 </Directory> |
|
40 </DirectoryRef> |
|
41 </Fragment> |
|
42 |
|
43 </Wix> |