diff options
author | Brad King <brad.king@kitware.com> | 2016-06-07 12:39:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-06-07 12:41:16 (GMT) |
commit | ff08a80af19530c95db4faa921168fb9ab346047 (patch) | |
tree | 5b54c5cff77f23c9c36776408176b866060d0b51 /Source/CPack/cmCPackDebGenerator.cxx | |
parent | 3b2844328c116cba71c71365507f33f98611e3dc (diff) | |
download | CMake-ff08a80af19530c95db4faa921168fb9ab346047.zip CMake-ff08a80af19530c95db4faa921168fb9ab346047.tar.gz CMake-ff08a80af19530c95db4faa921168fb9ab346047.tar.bz2 |
Source/CPack: Run clang-format to fix style
Diffstat (limited to 'Source/CPack/cmCPackDebGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackDebGenerator.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/CPack/cmCPackDebGenerator.cxx b/Source/CPack/cmCPackDebGenerator.cxx index ddaa483..bef0fb4 100644 --- a/Source/CPack/cmCPackDebGenerator.cxx +++ b/Source/CPack/cmCPackDebGenerator.cxx @@ -57,9 +57,9 @@ int cmCPackDebGenerator::PackageOnePack(std::string const& initialTopLevel, // Begin the archive for this pack std::string localToplevel(initialTopLevel); std::string packageFileName(cmSystemTools::GetParentDirectory(toplevel)); - std::string outputFileName(std::string( - this->GetOption("CPACK_PACKAGE_FILE_NAME")) + - "-" + packageName + this->GetOutputExtension()); + std::string outputFileName( + std::string(this->GetOption("CPACK_PACKAGE_FILE_NAME")) + "-" + + packageName + this->GetOutputExtension()); localToplevel += "/" + packageName; /* replace the TEMP DIRECTORY with the component one */ @@ -174,9 +174,9 @@ int cmCPackDebGenerator::PackageComponentsAllInOne( // The ALL GROUPS in ONE package case std::string localToplevel(initialTopLevel); std::string packageFileName(cmSystemTools::GetParentDirectory(toplevel)); - std::string outputFileName(std::string( - this->GetOption("CPACK_PACKAGE_FILE_NAME")) + - this->GetOutputExtension()); + std::string outputFileName( + std::string(this->GetOption("CPACK_PACKAGE_FILE_NAME")) + + this->GetOutputExtension()); // all GROUP in one vs all COMPONENT in one localToplevel += "/" + compInstDirName; |