diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-04-13 16:08:49 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-04-13 16:08:49 +0200 |
commit | 437e9f662fad9357fec11eed934690fd90f753a6 (patch) | |
tree | 2bb0e3606d543efe87bf0b10457d036f778975c2 /win | |
parent | 88dccdd5f04e9244323de0eb197590ab8e7292fd (diff) |
Compress the Windows installer with zlib to reduce AV false positives
Diffstat (limited to 'win')
-rw-r--r-- | win/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CMakeLists.txt b/win/CMakeLists.txt index e6a854d99..087bd7970 100644 --- a/win/CMakeLists.txt +++ b/win/CMakeLists.txt @@ -99,7 +99,7 @@ if(EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake") set(CPACK_NSIS_MUI_UNIICON "${INSPIRCD_BASE}/win\\\\inspircd.ico") set(CPACK_NSIS_INSTALLED_ICON_NAME "inspircd.exe") set(CPACK_NSIS_URL_INFO_ABOUT "http://www.inspircd.org/") - set(CPACK_NSIS_COMPRESSOR "/SOLID lzma") + set(CPACK_NSIS_COMPRESSOR "/SOLID zlib") include(CPack) endif(EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake") |