##// END OF EJS Templates
wix: add an ssl certificate file to the WiX installers
Steve Borho -
r13216:e5c2338d stable
parent child Browse files
Show More
@@ -44,6 +44,8 b''
44 <?define COPYING.guid = {B7801DBA-1C49-4BF4-91AD-33C65F5C7895} ?>
44 <?define COPYING.guid = {B7801DBA-1C49-4BF4-91AD-33C65F5C7895} ?>
45 <?define mercurial.rc.guid = {1D5FAEEE-7E6E-43B1-9F7F-802714316B15} ?>
45 <?define mercurial.rc.guid = {1D5FAEEE-7E6E-43B1-9F7F-802714316B15} ?>
46 <?define mergetools.rc.guid = {E8A1DC29-FF40-4B5F-BD12-80B9F7BF0CCD} ?>
46 <?define mergetools.rc.guid = {E8A1DC29-FF40-4B5F-BD12-80B9F7BF0CCD} ?>
47 <?define paths.rc.guid = {F9ADF21D-5F0B-4934-8CD9-14BE63664721} ?>
48 <?define cacert.pem.guid = {EC1B2630-FE21-46E6-915B-A6545AF703D4} ?>
47 <?define ProgramMenuDir.guid = {D5A63320-1238-489B-B68B-CF053E9577CA} ?>
49 <?define ProgramMenuDir.guid = {D5A63320-1238-489B-B68B-CF053E9577CA} ?>
48 <?define hgcmd.guid = {65CCC756-E72E-4C5F-901E-D575EDC80DB3} ?>
50 <?define hgcmd.guid = {65CCC756-E72E-4C5F-901E-D575EDC80DB3} ?>
49
51
@@ -82,6 +82,15 b''
82 <File Id='mergetools.rc' Name='MergeTools.rc' Source='contrib\mergetools.hgrc'
82 <File Id='mergetools.rc' Name='MergeTools.rc' Source='contrib\mergetools.hgrc'
83 ReadOnly='yes' KeyPath='yes'/>
83 ReadOnly='yes' KeyPath='yes'/>
84 </Component>
84 </Component>
85 <Component Id='paths.rc' Guid='$(var.paths.rc.guid)' Win64='$(var.IsX64)'>
86 <CreateFolder/>
87 <IniFile Id="ini0" Action="createLine" Directory="HGRCD" Name="Paths.rc"
88 Section="web" Key="cacerts" Value="[INSTALLDIR]hgrc.d\cacert.pem" />
89 </Component>
90 <Component Id='cacert.pem' Guid='$(var.cacert.pem.guid)' Win64='$(var.IsX64)'>
91 <File Id='cacert.pem' Name='cacert.pem' Source='..\misc\cacert.pem'
92 ReadOnly='yes' KeyPath='yes'/>
93 </Component>
85 </Directory>
94 </Directory>
86
95
87 <Directory Id='binFolder' Name='bin'>
96 <Directory Id='binFolder' Name='bin'>
@@ -128,6 +137,8 b''
128 <ComponentRef Id='COPYING' />
137 <ComponentRef Id='COPYING' />
129 <ComponentRef Id='mercurial.rc' />
138 <ComponentRef Id='mercurial.rc' />
130 <ComponentRef Id='mergetools.rc' />
139 <ComponentRef Id='mergetools.rc' />
140 <ComponentRef Id='paths.rc' />
141 <ComponentRef Id='cacert.pem' />
131 <ComponentRef Id='helpFolder' />
142 <ComponentRef Id='helpFolder' />
132 <ComponentRef Id='HgCmd' />
143 <ComponentRef Id='HgCmd' />
133 <ComponentGroupRef Id='templatesFolder' />
144 <ComponentGroupRef Id='templatesFolder' />
General Comments 0
You need to be logged in to leave comments. Login now