diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 15:56:09 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 15:56:09 (GMT) |
commit | 7dc8a92246ced17f9f3cf6161f2ef07bdda51014 (patch) | |
tree | fd7f79bd2ffe4fe9d60d302403aeb317661c9d8a /Source/cmLinkLibrariesCommand.cxx | |
parent | 4b176d7f45bc436caccfd582d98c0bf0123a6bb2 (diff) | |
download | CMake-7dc8a92246ced17f9f3cf6161f2ef07bdda51014.zip CMake-7dc8a92246ced17f9f3cf6161f2ef07bdda51014.tar.gz CMake-7dc8a92246ced17f9f3cf6161f2ef07bdda51014.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmLinkLibrariesCommand.cxx')
-rw-r--r-- | Source/cmLinkLibrariesCommand.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmLinkLibrariesCommand.cxx b/Source/cmLinkLibrariesCommand.cxx index 37d7b08..94f0051 100644 --- a/Source/cmLinkLibrariesCommand.cxx +++ b/Source/cmLinkLibrariesCommand.cxx @@ -33,7 +33,8 @@ bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args) ++i; if(i == args.end()) { - this->SetError("The \"debug\" argument must be followed by a library"); + this->SetError("The \"debug\" argument must be followed by " + "a library"); return false; } this->Makefile->AddLinkLibrary(i->c_str(), @@ -44,7 +45,8 @@ bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args) ++i; if(i == args.end()) { - this->SetError("The \"optimized\" argument must be followed by a library"); + this->SetError("The \"optimized\" argument must be followed by " + "a library"); return false; } this->Makefile->AddLinkLibrary(i->c_str(), |