summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackGeneratorFactory.cxx
diff options
context:
space:
mode:
authorDavid Golub <golubdr@gmail.com>2012-05-09 19:33:44 (GMT)
committerDavid Cole <david.cole@kitware.com>2012-11-20 01:08:31 (GMT)
commit6ff730a4983d15f3e115a919eb18d866f8c65507 (patch)
tree794fb247cc13601800b312228dbf72872e79bbbb /Source/CPack/cmCPackGeneratorFactory.cxx
parent51da766a6d85397f9244f5ec426091848d9318ff (diff)
downloadCMake-6ff730a4983d15f3e115a919eb18d866f8c65507.zip
CMake-6ff730a4983d15f3e115a919eb18d866f8c65507.tar.gz
CMake-6ff730a4983d15f3e115a919eb18d866f8c65507.tar.bz2
CPack/NSIS: Add support for 64-bit NSIS (#13203)
Diffstat (limited to 'Source/CPack/cmCPackGeneratorFactory.cxx')
-rw-r--r--Source/CPack/cmCPackGeneratorFactory.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackGeneratorFactory.cxx b/Source/CPack/cmCPackGeneratorFactory.cxx
index 37ff460..eba1ef9 100644
--- a/Source/CPack/cmCPackGeneratorFactory.cxx
+++ b/Source/CPack/cmCPackGeneratorFactory.cxx
@@ -61,6 +61,8 @@ cmCPackGeneratorFactory::cmCPackGeneratorFactory()
{
this->RegisterGenerator("NSIS", "Null Soft Installer",
cmCPackNSISGenerator::CreateGenerator);
+ this->RegisterGenerator("NSIS64", "Null Soft Installer (64-bit)",
+ cmCPackNSISGenerator::CreateGenerator64);
}
#ifdef __CYGWIN__
if (cmCPackCygwinBinaryGenerator::CanGenerate())