-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Name @PACKAGE_NAME@ | ||
Name "@PACKAGE_NAME@ (@WINDOWS_BITS@-bit)" | ||
|
||
RequestExecutionLevel highest | ||
SetCompressor /SOLID lzma | ||
|
||
# General Symbol Definitions | ||
!define REGKEY "SOFTWARE\$(^Name)" | ||
!define VERSION @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@ | ||
!define COMPANY "Bitcoin project" | ||
!define COMPANY "Bitcoin Core project" | ||
!define URL http://www.bitcoin.org/ | ||
|
||
# MUI Symbol Definitions | ||
|
@@ -28,6 +28,9 @@ SetCompressor /SOLID lzma | |
# Included files | ||
!include Sections.nsh | ||
!include MUI2.nsh | ||
!if "@WINDOWS_BITS@" == "64" | ||
!include x64.nsh | ||
!endif | ||
|
||
# Variables | ||
Var StartMenuGroup | ||
|
@@ -45,14 +48,18 @@ Var StartMenuGroup | |
!insertmacro MUI_LANGUAGE English | ||
|
||
# Installer attributes | ||
OutFile @abs_top_srcdir@/bitcoin-${VERSION}-win32-setup.exe | ||
OutFile @abs_top_srcdir@/bitcoin-${VERSION}-win@[email protected] | ||
!if "@WINDOWS_BITS@" == "64" | ||
InstallDir $PROGRAMFILES64\Bitcoin | ||
!else | ||
InstallDir $PROGRAMFILES\Bitcoin | ||
!endif | ||
CRCCheck on | ||
XPStyle on | ||
BrandingText " " | ||
ShowInstDetails show | ||
VIProductVersion ${VERSION}.@CLIENT_VERSION_BUILD@ | ||
VIAddVersionKey ProductName Bitcoin | ||
VIAddVersionKey ProductName "Bitcoin Core" | ||
VIAddVersionKey ProductVersion "${VERSION}" | ||
VIAddVersionKey CompanyName "${COMPANY}" | ||
VIAddVersionKey CompanyWebsite "${URL}" | ||
|
@@ -152,6 +159,15 @@ SectionEnd | |
# Installer functions | ||
Function .onInit | ||
InitPluginsDir | ||
!if "@WINDOWS_BITS@" == "64" | ||
${If} ${RunningX64} | ||
; disable registry redirection (enable access to 64-bit portion of registry) | ||
SetRegView 64 | ||
${Else} | ||
MessageBox MB_OK|MB_ICONSTOP "Cannot install 64-bit version on a 32-bit system." | ||
Abort | ||
${EndIf} | ||
!endif | ||
FunctionEnd | ||
|
||
# Uninstaller functions | ||
|