summaryrefslogtreecommitdiffstats
path: root/Source/cmVariableRequiresCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-03-10 18:54:57 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-03-10 18:54:57 (GMT)
commit89e5fc63fec560bec27d8517cc74ec41232736a0 (patch)
treee4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmVariableRequiresCommand.cxx
parent509e383aacb65a501b20ce9a5520a31daff152e3 (diff)
downloadCMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip
CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz
CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2
STYLE: fix line lengths
Diffstat (limited to 'Source/cmVariableRequiresCommand.cxx')
-rw-r--r--Source/cmVariableRequiresCommand.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/cmVariableRequiresCommand.cxx b/Source/cmVariableRequiresCommand.cxx
index b447d23..d7b1376 100644
--- a/Source/cmVariableRequiresCommand.cxx
+++ b/Source/cmVariableRequiresCommand.cxx
@@ -18,7 +18,8 @@
#include "cmCacheManager.h"
// cmLibraryCommand
-bool cmVariableRequiresCommand::InitialPass(std::vector<std::string> const& args)
+bool cmVariableRequiresCommand::InitialPass(std::vector<std::string>const&
+ args)
{
if(args.size() < 3 )
{
@@ -62,13 +63,16 @@ bool cmVariableRequiresCommand::InitialPass(std::vector<std::string> const& args
if(!requirementsMet)
{
std::string message = "Variable assertion failed:\n";
- message += testVariable + " Requires that the following unset variables are set:\n";
+ message += testVariable +
+ " Requires that the following unset variables are set:\n";
message += notSet;
message += "\nPlease set them, or set ";
message += testVariable + " to false, and re-configure.\n";
if(hasAdvanced)
{
- message += "One or more of the required variables is advanced. To set the variable, you must turn on advanced mode in cmake.";
+ message +=
+ "One or more of the required variables is advanced."
+ " To set the variable, you must turn on advanced mode in cmake.";
}
cmSystemTools::Error(message.c_str());
}