ENH: print all arguments

This commit is contained in:
Bill Hoffman 2001-06-04 18:24:28 -04:00
parent c57d16eb41
commit f18bb42bfc
1 changed files with 8 additions and 1 deletions

View File

@ -52,7 +52,14 @@ bool cmMessageCommand::Invoke(std::vector<std::string>& args)
if (args.size() >= 2)
{
cmSystemTools::Message(args[0].c_str(), args[1].c_str());
std::string message;
std::vector<std::string>::iterator i = args.begin();
++i;
for(;i != args.end(); ++i)
{
message += *i;
}
cmSystemTools::Message(args[0].c_str(), message.c_str());
}
else
{