NSIS: use zlib compression
LZMA is really, REALLY slow in NSIS’ Linux port. Fucking Windows devs. It’s also overkill since our assets are already compressed, so switch to zlib.
This commit is contained in:
parent
576643e1d6
commit
0386cc1364
1 changed files with 1 additions and 2 deletions
|
@ -10,8 +10,7 @@ Name "Taisei Project"
|
|||
!define APPNAME "Taisei Project"
|
||||
|
||||
OutFile "@OUTPUT@"
|
||||
SetCompressor /SOLID lzma
|
||||
SetCompressorDictSize 64
|
||||
SetCompressor /SOLID zlib
|
||||
|
||||
!define VERSION "@VERSION({string})@"
|
||||
!define PATCH "0"
|
||||
|
|
Loading…
Reference in a new issue