diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 13:54:57 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 13:54:57 -0500 |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmVariableRequiresCommand.cxx | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | cmake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmVariableRequiresCommand.cxx')
-rw-r--r-- | Source/cmVariableRequiresCommand.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/cmVariableRequiresCommand.cxx b/Source/cmVariableRequiresCommand.cxx index b447d23622..d7b1376aa5 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()); } |