aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2011-05-24 16:21:45 -0700
committerJeff Garzik <jgarzik@exmulti.com>2011-05-24 16:21:45 -0700
commit32a1753e61a7f60ec3b5fe6377bab7f863b83d3f (patch)
tree9c786baf07638b4d6ef3a6acb66ade51767b8e5d
parent1fcf6f038ec10fab351f9eb481f93bdab70b5415 (diff)
parentcbb2b59a905c83b2e5a342dc6efb6091c505b280 (diff)
downloadbitcoin-32a1753e61a7f60ec3b5fe6377bab7f863b83d3f.tar.xz
Merge pull request #249 from TheBlueMatt/nsisfix
Update NSIS Installer file to support the new directory structure.
-rw-r--r--share/setup.nsi16
1 files changed, 8 insertions, 8 deletions
diff --git a/share/setup.nsi b/share/setup.nsi
index b17e553372..4239f53207 100644
--- a/share/setup.nsi
+++ b/share/setup.nsi
@@ -9,7 +9,7 @@ RequestExecutionLevel highest
!define URL http://www.bitcoin.org/
# MUI Symbol Definitions
-!define MUI_ICON "src\rc\bitcoin.ico"
+!define MUI_ICON "../share/pixmaps/bitcoin.ico"
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
!define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY}
@@ -59,16 +59,16 @@ ShowUninstDetails show
Section -Main SEC0000
SetOutPath $INSTDIR
SetOverwrite on
- File bitcoin.exe
- File libeay32.dll
- File license.txt
- File readme.txt
+ File ../src/bitcoin.exe
+ File ../../openssl-1.0.0d/libeay32.dll
+ File /oname=license.txt ../COPYING
+ File /oname=readme.txt ../doc/README_windows.txt
SetOutPath $INSTDIR\daemon
- File /r daemon\*.*
+ File ../src/bitcoind.exe
SetOutPath $INSTDIR\locale
- File /r locale\*.*
+ File /r ../locale/*.*
SetOutPath $INSTDIR\src
- File /r src\*.*
+ File /r /x *.exe /x *.o ../src\*.*
SetOutPath $INSTDIR
WriteRegStr HKCU "${REGKEY}\Components" Main 1
SectionEnd