Show More
@@ -1,43 +1,44 b'' | |||
|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
|
2 | 2 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
|
3 | 3 | |
|
4 | 4 | <?include guids.wxi ?> |
|
5 | 5 | <?include defines.wxi ?> |
|
6 | 6 | |
|
7 | 7 | <Fragment> |
|
8 | 8 | <ComponentGroup Id="contribFolder"> |
|
9 | 9 | <ComponentRef Id="contrib" /> |
|
10 | 10 | <ComponentRef Id="contrib.vim" /> |
|
11 | 11 | </ComponentGroup> |
|
12 | 12 | </Fragment> |
|
13 | 13 | |
|
14 | 14 | <Fragment> |
|
15 | 15 | <DirectoryRef Id="INSTALLDIR"> |
|
16 | 16 | <Directory Id="contribdir" Name="contrib" FileSource="$(var.SourceDir)"> |
|
17 | 17 | <Component Id="contrib" Guid="$(var.contrib.guid)" Win64='$(var.IsX64)'> |
|
18 | 18 | <File Name="bash_completion" KeyPath="yes" /> |
|
19 | 19 | <File Name="hgk.tcl" Source="$(var.SourceDir)/hgk" /> |
|
20 | 20 | <File Name="hgweb.fcgi" /> |
|
21 | 21 | <File Name="hgweb.wsgi" /> |
|
22 | 22 | <File Name="logo-droplets.svg" /> |
|
23 | 23 | <File Name="mercurial.el" /> |
|
24 | <File Name="mq.el" /> | |
|
24 | 25 | <File Name="tcsh_completion" /> |
|
25 | 26 | <File Name="tcsh_completion_build.sh" /> |
|
26 | 27 | <File Name="xml.rnc" /> |
|
27 | 28 | <File Name="zsh_completion" /> |
|
28 | 29 | </Component> |
|
29 | 30 | <Directory Id="vimdir" Name="vim"> |
|
30 | 31 | <Component Id="contrib.vim" Guid="$(var.contrib.vim.guid)" Win64='$(var.IsX64)'> |
|
31 | 32 | <File Name="hg-menu.vim" KeyPath="yes" /> |
|
32 | 33 | <File Name="HGAnnotate.vim" /> |
|
33 | 34 | <File Name="hgcommand.vim" /> |
|
34 | 35 | <File Name="patchreview.txt" /> |
|
35 | 36 | <File Name="patchreview.vim" /> |
|
36 | 37 | <File Name="hgtest.vim" /> |
|
37 | 38 | </Component> |
|
38 | 39 | </Directory> |
|
39 | 40 | </Directory> |
|
40 | 41 | </DirectoryRef> |
|
41 | 42 | </Fragment> |
|
42 | 43 | |
|
43 | 44 | </Wix> |
General Comments 0
You need to be logged in to leave comments.
Login now