diff options
author | Brad King <brad.king@kitware.com> | 2012-01-17 19:03:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-01-17 19:03:45 (GMT) |
commit | 982b5d9eef0b8224c425d60539c3b1fd665062b6 (patch) | |
tree | 84caa30f1b22a25df5e4828cafccb9624527d310 /Source/cmInstallCommand.cxx | |
parent | a64b6185de82ec3c4f686748d2244810890cddd1 (diff) | |
download | CMake-982b5d9eef0b8224c425d60539c3b1fd665062b6.zip CMake-982b5d9eef0b8224c425d60539c3b1fd665062b6.tar.gz CMake-982b5d9eef0b8224c425d60539c3b1fd665062b6.tar.bz2 |
cmInstallCommand: Fix line length for style
After indentation was fixed by a previous commit some lines became too
long. Re-wrap to shorten them.
Diffstat (limited to 'Source/cmInstallCommand.cxx')
-rw-r--r-- | Source/cmInstallCommand.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx index ddc2a94..dca528d 100644 --- a/Source/cmInstallCommand.cxx +++ b/Source/cmInstallCommand.cxx @@ -602,11 +602,11 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args) break; } - // These well-known sets of files are installed *automatically* for FRAMEWORK - // SHARED library targets on the Mac as part of installing the FRAMEWORK. - // For other target types or on other platforms, they are not installed - // automatically and so we need to create install files generators for them. - // + // These well-known sets of files are installed *automatically* for + // FRAMEWORK SHARED library targets on the Mac as part of installing the + // FRAMEWORK. For other target types or on other platforms, they are not + // installed automatically and so we need to create install files + // generators for them. bool createInstallGeneratorsForTargetFileSets = true; if(target.IsFrameworkOnApple()) @@ -630,8 +630,8 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args) // Create the files install generator. if (!privateHeaderArgs.GetDestination().empty()) { - privateHeaderGenerator = CreateInstallFilesGenerator(absFiles, - privateHeaderArgs, false); + privateHeaderGenerator = + CreateInstallFilesGenerator(absFiles, privateHeaderArgs, false); } else { @@ -656,8 +656,8 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args) // Create the files install generator. if (!publicHeaderArgs.GetDestination().empty()) { - publicHeaderGenerator = CreateInstallFilesGenerator(absFiles, - publicHeaderArgs, false); + publicHeaderGenerator = + CreateInstallFilesGenerator(absFiles, publicHeaderArgs, false); } else { |