diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2011-02-14 17:25:34 +0000 |
---|---|---|
committer | unknown <Administrator@.(none)> | 2011-02-14 17:26:24 +0000 |
commit | cf7c1874fead05a828a1a28a239da411a0cb725e (patch) | |
tree | 5b536f094406b9f63bb72588199c001b2b1afcd9 /setup.nsi | |
parent | 47908a890726f424371c9784b8508cff163c2c78 (diff) |
Update windows build process for 0.3.20 release
Diffstat (limited to 'setup.nsi')
-rw-r--r-- | setup.nsi | 17 |
1 files changed, 7 insertions, 10 deletions
@@ -1,13 +1,10 @@ -# Auto-generated by EclipseNSIS Script Wizard
-# 3.10.2009 19:00:28
-
Name Bitcoin
RequestExecutionLevel highest
# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
-!define VERSION 0.3.19
+!define VERSION 0.3.20
!define COMPANY "Bitcoin project"
!define URL http://www.bitcoin.org/
@@ -42,12 +39,12 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English
# Installer attributes
-OutFile bitcoin-0.3.19-win32-setup.exe
+OutFile bitcoin-0.3.20-win32-setup.exe
InstallDir $PROGRAMFILES\Bitcoin
CRCCheck on
XPStyle on
ShowInstDetails show
-VIProductVersion 0.3.19.0
+VIProductVersion 0.3.20.0
VIAddVersionKey ProductName Bitcoin
VIAddVersionKey ProductVersion "${VERSION}"
VIAddVersionKey CompanyName "${COMPANY}"
@@ -63,8 +60,8 @@ Section -Main SEC0000 SetOutPath $INSTDIR
SetOverwrite on
File bitcoin.exe
- File libeay32.dll
- File mingwm10.dll
+ File msvcp100.dll
+ File msvcr100.dll
File license.txt
File readme.txt
SetOutPath $INSTDIR\daemon
@@ -112,8 +109,8 @@ done${UNSECTION_ID}: # Uninstaller sections
Section /o -un.Main UNSEC0000
Delete /REBOOTOK $INSTDIR\bitcoin.exe
- Delete /REBOOTOK $INSTDIR\libeay32.dll
- Delete /REBOOTOK $INSTDIR\mingwm10.dll
+ Delete /REBOOTOK $INSTDIR\msvcp100.dll
+ Delete /REBOOTOK $INSTDIR\msvcr100.dll
Delete /REBOOTOK $INSTDIR\license.txt
Delete /REBOOTOK $INSTDIR\readme.txt
RMDir /r /REBOOTOK $INSTDIR\daemon
|