[host] windows: fix NSIS install directory on 64-bit builds

This is probably an NSIS bug.
This commit is contained in:
Quantum
2021-10-17 19:22:50 -04:00
committed by Geoffrey McRae
parent 8dcf7af791
commit 13fabc2e4a

View File

@@ -31,10 +31,12 @@ Unicode true
RequestExecutionLevel admin
ShowInstDetails "show"
ShowUninstDetails "show"
InstallDir "$PROGRAMFILES64\Looking Glass (host)"
!ifndef BUILD_32BIT
Target AMD64-Unicode
InstallDir "$PROGRAMFILES\Looking Glass (host)"
!else
InstallDir "$PROGRAMFILES64\Looking Glass (host)"
!endif
!define MUI_ICON "icon.ico"