diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-10 17:50:44 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-10 17:50:44 (GMT) |
commit | aae0bcdacfb9cfc10769452895fbc96c43add1d6 (patch) | |
tree | 3e4b14a2a3e3e6bb5e1f9c1b0e32da0224993664 /Source/cmAddSubDirectoryCommand.cxx | |
parent | 26e75041fa1b5198ef6cc6372c9b529a8189e649 (diff) | |
download | CMake-aae0bcdacfb9cfc10769452895fbc96c43add1d6.zip CMake-aae0bcdacfb9cfc10769452895fbc96c43add1d6.tar.gz CMake-aae0bcdacfb9cfc10769452895fbc96c43add1d6.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmAddSubDirectoryCommand.cxx')
-rw-r--r-- | Source/cmAddSubDirectoryCommand.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmAddSubDirectoryCommand.cxx b/Source/cmAddSubDirectoryCommand.cxx index a134c59..e695781 100644 --- a/Source/cmAddSubDirectoryCommand.cxx +++ b/Source/cmAddSubDirectoryCommand.cxx @@ -17,7 +17,8 @@ #include "cmAddSubDirectoryCommand.h" // cmAddSubDirectoryCommand -bool cmAddSubDirectoryCommand::InitialPass(std::vector<std::string> const& args) +bool cmAddSubDirectoryCommand::InitialPass +(std::vector<std::string> const& args) { if(args.size() < 1 ) { @@ -103,7 +104,11 @@ bool cmAddSubDirectoryCommand::InitialPass(std::vector<std::string> const& args) if (!cmSystemTools::FindLastString(binPath.c_str(), this->Makefile->GetHomeDirectory())) { - this->SetError("A full source directory was specified that is not in the source tree but no binary directory was specified. If you specify an out of tree source directory then you must provide the binary directory as well."); + this->SetError("A full source directory was specified that is not " + "in the source tree but no binary directory was " + "specified. If you specify an out of tree source " + "directory then you must provide the binary " + "directory as well."); return false; } cmSystemTools::ReplaceString(binPath,this->Makefile->GetHomeDirectory(), |