diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:44:24 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:44:24 (GMT) |
commit | af04164c6d7171b38c38fff3cb96fb73f7451e74 (patch) | |
tree | 21747e1e20f3e808481e65f17b4f3b0d8a60f520 /Source/CPack/cmCPackNSISGenerator.cxx | |
parent | bf5ed9b27b5ce80348de2ec283c7c13893a00360 (diff) | |
download | CMake-af04164c6d7171b38c38fff3cb96fb73f7451e74.zip CMake-af04164c6d7171b38c38fff3cb96fb73f7451e74.tar.gz CMake-af04164c6d7171b38c38fff3cb96fb73f7451e74.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 5f2541f..bac5d74 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -96,11 +96,13 @@ int cmCPackNSISGenerator::CompressFiles(const char* outFileName, } cmCPackLogger(cmCPackLog::LOG_DEBUG, "Uninstall Dirs: " << dstr.str().c_str() << std::endl); - this->SetOptionIfNotSet("CPACK_NSIS_DELETE_DIRECTORIES", dstr.str().c_str()); + this->SetOptionIfNotSet("CPACK_NSIS_DELETE_DIRECTORIES", + dstr.str().c_str()); cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Configure file: " << nsisInFileName << " to " << nsisFileName << std::endl); - this->ConfigureFile(nsisInInstallOptions.c_str(), nsisInstallOptions.c_str()); + this->ConfigureFile(nsisInInstallOptions.c_str(), + nsisInstallOptions.c_str()); this->ConfigureFile(nsisInFileName.c_str(), nsisFileName.c_str()); std::string nsisCmd = "\""; nsisCmd += this->GetOption("CPACK_INSTALLER_PROGRAM"); @@ -227,7 +229,8 @@ int cmCPackNSISGenerator::InitializeInternal() << ".lnk\"" << std::endl; } this->SetOptionIfNotSet("CPACK_NSIS_CREATE_ICONS", str.str().c_str()); - this->SetOptionIfNotSet("CPACK_NSIS_DELETE_ICONS", deleteStr.str().c_str()); + this->SetOptionIfNotSet("CPACK_NSIS_DELETE_ICONS", + deleteStr.str().c_str()); } return this->Superclass::InitializeInternal(); |