From eca571e3ce270e940e5c81f2aafcbb84dd269a0f Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Sun, 11 Apr 2010 13:34:12 +0200 Subject: [PATCH] Installer: Tune LZMA compression settings - Fall back to the default "normal" compression for internal structures which actually produces a slightly smaller setup than "max". - Use lzma2/ultra compression, which saves almost 1 MB for the setup (and still only requires a moderate 372 MB of memory for compression). - Slightly speed up compression by allowing to use a separate process. Signed-off-by: Sebastian Schuberth --- share/WinGit/install.iss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/WinGit/install.iss b/share/WinGit/install.iss index 98a678f5..af45b55a 100644 --- a/share/WinGit/install.iss +++ b/share/WinGit/install.iss @@ -5,7 +5,8 @@ [Setup] ; Compiler-related -InternalCompressLevel=max +Compression=lzma2/ultra +LZMAUseSeparateProcess=yes OutputBaseFilename={#emit APP_NAME+'-'+APP_VERSION} OutputDir=%OUTPUTDIR% SolidCompression=yes -- 2.11.4.GIT