diff options
author | Johnny Jazeix <jazeix@gmail.com> | 2021-08-02 19:25:20 (GMT) |
---|---|---|
committer | Johnny Jazeix <jazeix@gmail.com> | 2021-08-02 19:28:30 (GMT) |
commit | c0572a15d6c6a2e643b13e21823f6fe7cd402a41 (patch) | |
tree | 0e6d638dec10ff94821e4fffde4fac538fe0cb80 /Source/CPack/cmCPackNSISGenerator.cxx | |
parent | 0660dc4dcfc1934757a5a7f0ddf5980fee2f8d1a (diff) | |
download | CMake-c0572a15d6c6a2e643b13e21823f6fe7cd402a41.zip CMake-c0572a15d6c6a2e643b13e21823f6fe7cd402a41.tar.gz CMake-c0572a15d6c6a2e643b13e21823f6fe7cd402a41.tar.bz2 |
CPack/NSIS: Bump minimal version of NSIS to 3.03
Fixes: #22508
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 6bd0d1b..0379232 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -487,12 +487,12 @@ int cmCPackNSISGenerator::InitializeInternal() } if (versionRex.find(output)) { double nsisVersion = atof(versionRex.match(1).c_str()); - double minNSISVersion = 3.0; + double minNSISVersion = 3.03; cmCPackLogger(cmCPackLog::LOG_DEBUG, "NSIS Version: " << nsisVersion << std::endl); if (nsisVersion < minNSISVersion) { cmCPackLogger(cmCPackLog::LOG_ERROR, - "CPack requires NSIS Version 3.0 or greater. " + "CPack requires NSIS Version 3.03 or greater. " "NSIS found on the system was: " << nsisVersion << std::endl); return 0; |