Adding Windows Plugins Directory to install #4696

This commit is contained in:
Adam Potolsky 2015-06-05 16:55:36 -07:00
parent f230ae734e
commit 2db2ffac84
1 changed files with 9 additions and 0 deletions

View File

@ -27,6 +27,7 @@
<Feature Id="ProductFeature" Title="$(var.Name)"> <Feature Id="ProductFeature" Title="$(var.Name)">
<ComponentGroupRef Id="ProductComponents" /> <ComponentGroupRef Id="ProductComponents" />
<ComponentGroupRef Id="OpenSslComponents" /> <ComponentGroupRef Id="OpenSslComponents" />
<ComponentGroupRef Id="PluginsComponents" />
<MergeRef Id="CRT" /> <MergeRef Id="CRT" />
</Feature> </Feature>
@ -69,6 +70,7 @@
<Directory Id="INSTALLFOLDER" Name="$(var.Name)"> <Directory Id="INSTALLFOLDER" Name="$(var.Name)">
<Merge Id="CRT" Language="0" SourceFile="$(var.CRT)" DiskId="1" /> <Merge Id="CRT" Language="0" SourceFile="$(var.CRT)" DiskId="1" />
<Directory Id="OpenSslDir" Name="OpenSSL" /> <Directory Id="OpenSslDir" Name="OpenSSL" />
<Directory Id="PluginsDir" Name="Plugins" />
</Directory> </Directory>
</Directory> </Directory>
<Directory Id="ProgramMenuFolder" /> <Directory Id="ProgramMenuFolder" />
@ -130,5 +132,12 @@
<File Source="$(var.ResPath)/openssl/synergy.conf" /> <File Source="$(var.ResPath)/openssl/synergy.conf" />
</Component> </Component>
</ComponentGroup> </ComponentGroup>
<ComponentGroup Id="PluginsComponents" Directory="PluginsDir">
<Component Id="Plugins" Guid="0AB05500-0D04-4932-9B07-EDDA052796E2">
<File Source="$(var.BinPath)/plugins/ns.dll" />
</Component>
</ComponentGroup>
</Fragment> </Fragment>
</Wix> </Wix>