diff options
author | Jay Weisskopf <jay@jayschwa.net> | 2011-07-11 02:11:15 -0500 |
---|---|---|
committer | Jay Weisskopf <jay@jayschwa.net> | 2011-07-11 17:44:44 -0500 |
commit | 230b894779aa0876e68eb7ebdcf8d05bf1ac97b4 (patch) | |
tree | 340ed3563cde88f0b6eaf503ed69d721bdac3073 /share/setup.nsi | |
parent | 6c9498147fb4bd6e1a79eaaa0c93a558a57a0caf (diff) |
Set default compression for NSIS installer to LZMA.
Use of LZMA (versus the current zlib) shaves a few MB off the installer.
Diffstat (limited to 'share/setup.nsi')
-rw-r--r-- | share/setup.nsi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/setup.nsi b/share/setup.nsi index cd39aa3993..022eea822c 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -1,6 +1,7 @@ Name Bitcoin
RequestExecutionLevel highest
+SetCompressor /SOLID lzma
# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
|