2001-06-05 00:55:11 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-06-05 00:55:11 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-06-05 00:55:11 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-06-05 00:55:11 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmMessageCommand.h"
|
|
|
|
|
|
|
|
// cmLibraryCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmMessageCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-06-05 00:55:11 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 1 )
|
2001-06-05 00:55:11 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2001-11-07 20:23:27 +03:00
|
|
|
std::string message;
|
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
2002-03-29 18:56:07 +03:00
|
|
|
|
|
|
|
bool send_error = false;
|
2003-01-21 20:50:48 +03:00
|
|
|
bool fatal_error = false;
|
2002-11-13 23:59:40 +03:00
|
|
|
bool status = false;
|
2002-03-29 18:56:07 +03:00
|
|
|
if (*i == "SEND_ERROR")
|
|
|
|
{
|
|
|
|
send_error = true;
|
|
|
|
++i;
|
|
|
|
}
|
2002-11-13 23:59:40 +03:00
|
|
|
else
|
|
|
|
{
|
2003-01-21 20:50:48 +03:00
|
|
|
if (*i == "STATUS")
|
|
|
|
{
|
|
|
|
status = true;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (*i == "FATAL_ERROR")
|
2002-11-13 23:59:40 +03:00
|
|
|
{
|
2003-01-21 20:50:48 +03:00
|
|
|
fatal_error = true;
|
|
|
|
++i;
|
2002-11-13 23:59:40 +03:00
|
|
|
}
|
2003-01-21 20:50:48 +03:00
|
|
|
}
|
2002-11-13 23:59:40 +03:00
|
|
|
}
|
2002-03-29 18:56:07 +03:00
|
|
|
|
2001-11-07 20:23:27 +03:00
|
|
|
for(;i != args.end(); ++i)
|
2001-06-05 00:55:11 +04:00
|
|
|
{
|
2001-11-07 20:23:27 +03:00
|
|
|
message += *i;
|
2001-06-05 00:55:11 +04:00
|
|
|
}
|
2002-03-29 18:56:07 +03:00
|
|
|
|
2006-06-22 23:37:58 +04:00
|
|
|
if (send_error || fatal_error)
|
2002-03-29 18:56:07 +03:00
|
|
|
{
|
2007-07-17 17:25:08 +04:00
|
|
|
cmSystemTools::Error(message.c_str());
|
2002-03-29 18:56:07 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-06-22 23:37:58 +04:00
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
this->Makefile->DisplayStatus(message.c_str(), -1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Message(message.c_str());
|
|
|
|
}
|
2002-03-29 18:56:07 +03:00
|
|
|
}
|
2006-01-25 19:07:46 +03:00
|
|
|
if(fatal_error )
|
2003-01-21 20:50:48 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
|
|
|
}
|
2006-10-06 19:11:59 +04:00
|
|
|
return true;
|
2001-06-05 00:55:11 +04:00
|
|
|
}
|
|
|
|
|