aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/installer
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-08-16 09:53:59 +0200
committerSimon Rozman <simon@rozman.si>2019-08-16 10:47:36 +0200
commit0b0fe0e1cfd31e485e6c151ddac90cd55749b732 (patch)
tree6d79326f2b67edd9056f186fbad0d8f1d1b6595f /installer
parentinstaller: clean up logic (diff)
downloadwireguard-windows-0b0fe0e1cfd31e485e6c151ddac90cd55749b732.tar.xz
wireguard-windows-0b0fe0e1cfd31e485e6c151ddac90cd55749b732.zip
installer: hardcode %ProgramFiles%\WireGuard install folder
Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'installer')
-rw-r--r--installer/wireguard.wxs25
1 files changed, 5 insertions, 20 deletions
diff --git a/installer/wireguard.wxs b/installer/wireguard.wxs
index 492422dd..7d7a7b5a 100644
--- a/installer/wireguard.wxs
+++ b/installer/wireguard.wxs
@@ -52,28 +52,13 @@
AllowSameVersionUpgrades="yes"
DowngradeErrorMessage="A newer version of [ProductName] is already installed."
Schedule="afterInstallExecute" />
- <Property Id="INSTALLFOLDERPREV">
- <ComponentSearch Id="WireGuardExecutable" Guid="c3508d23-3362-47ce-9220-321bdb1a1acc" />
- </Property>
- <SetProperty
- After="AppSearch"
- Action="SetInstallFolderPrev"
- Id="INSTALLFOLDER"
- Value="[INSTALLFOLDERPREV]"
- Sequence="first"><![CDATA[INSTALLFOLDERPREV AND NOT Installed]]></SetProperty>
- <SetProperty
- After="SetInstallFolderPrev"
- Action="SetInstallFolderParam"
- Id="INSTALLFOLDER"
- Value="[INSTALLDIR]"
- Sequence="first"><![CDATA[INSTALLDIR AND NOT Installed]]></SetProperty>
<!--
Folders
-->
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="$(var.PlatformProgramFilesFolder)">
- <Directory Id="INSTALLFOLDER" Name="WireGuard" />
+ <Directory Id="WireGuardFolder" Name="WireGuard" />
</Directory>
<Directory Id="ProgramMenuFolder" />
<Directory Id="SystemFolder" />
@@ -86,9 +71,9 @@
Components
-->
<ComponentGroup Id="WireGuardComponents">
- <Component Directory="INSTALLFOLDER" Id="WireGuardExecutable" Guid="c3508d23-3362-47ce-9220-321bdb1a1acc">
+ <Component Directory="WireGuardFolder" Id="WireGuardExecutable" Guid="c3508d23-3362-47ce-9220-321bdb1a1acc">
<File Source="..\$(var.WIREGUARD_PLATFORM)\wireguard.exe" KeyPath="yes">
- <Shortcut Id="WireGuardStartMenuShortcut" Directory="ProgramMenuFolder" Name="WireGuard" Description="WireGuard: Fast, Modern, Secure VPN Tunnel" WorkingDirectory="INSTALLFOLDER" Advertise="yes" />
+ <Shortcut Id="WireGuardStartMenuShortcut" Directory="ProgramMenuFolder" Name="WireGuard" Description="WireGuard: Fast, Modern, Secure VPN Tunnel" WorkingDirectory="WireGuardFolder" Advertise="yes" />
</File>
<ServiceControl Id="DummyService.3AA0C492_29F4_4342_B608_DB95B2DECB13" Name="DummyService.3AA0C492_29F4_4342_B608_DB95B2DECB13" /><!-- A dummy to make WiX create ServiceControl table for us. -->
</Component>
@@ -105,14 +90,14 @@
<!--
Merge modules
-->
- <DirectoryRef Id="INSTALLFOLDER">
+ <DirectoryRef Id="WireGuardFolder">
<Merge Id="WintunMergeModule" Language="0" DiskId="1" SourceFile=".deps\wintun-$(var.WIREGUARD_PLATFORM).msm" />
</DirectoryRef>
<!--
Features
-->
- <Feature Id="WireGuardFeature" Title="WireGuard" Level="1" ConfigurableDirectory="INSTALLFOLDER">
+ <Feature Id="WireGuardFeature" Title="WireGuard" Level="1">
<ComponentGroupRef Id="WireGuardComponents" />
</Feature>
<Feature Id="WintunFeature" Title="Wintun" Level="1">