2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-06-05 00:55:11 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-06-05 00:55:11 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-06-05 00:55:11 +04:00
|
|
|
#ifndef cmMessageCommand_h
|
|
|
|
#define cmMessageCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmMessageCommand
|
|
|
|
* \brief Displays a message to the user
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class cmMessageCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual cmCommand* Clone()
|
2001-06-05 00:55:11 +04:00
|
|
|
{
|
|
|
|
return new cmMessageCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2001-06-05 00:55:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetName() const { return "message";}
|
2001-06-05 00:55:11 +04:00
|
|
|
|
2003-10-29 16:58:54 +03:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual bool IsScriptable() const { return true; }
|
2003-10-29 16:58:54 +03:00
|
|
|
|
2001-06-05 00:55:11 +04:00
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetTerseDocumentation() const
|
2001-06-05 00:55:11 +04:00
|
|
|
{
|
|
|
|
return "Display a message to the user.";
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-06-05 00:55:11 +04:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetFullDocumentation() const
|
2001-06-05 00:55:11 +04:00
|
|
|
{
|
|
|
|
return
|
2009-03-06 18:04:06 +03:00
|
|
|
" message([STATUS|WARNING|AUTHOR_WARNING|FATAL_ERROR|SEND_ERROR]\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" \"message to display\" ...)\n"
|
2009-03-06 18:04:06 +03:00
|
|
|
"The optional keyword determines the type of message:\n"
|
|
|
|
" (none) = Important information\n"
|
|
|
|
" STATUS = Incidental information\n"
|
|
|
|
" WARNING = CMake Warning, continue processing\n"
|
|
|
|
" AUTHOR_WARNING = CMake Warning (dev), continue processing\n"
|
2009-03-06 20:06:43 +03:00
|
|
|
" SEND_ERROR = CMake Error, continue but skip generation\n"
|
2009-03-06 18:04:06 +03:00
|
|
|
" FATAL_ERROR = CMake Error, stop all processing\n"
|
|
|
|
"The CMake command-line tool displays STATUS messages on stdout "
|
|
|
|
"and all other message types on stderr. "
|
|
|
|
"The CMake GUI displays all messages in its log area. "
|
|
|
|
"The interactive dialogs (ccmake and CMakeSetup) show STATUS messages "
|
|
|
|
"one at a time on a status line and other messages in interactive "
|
|
|
|
"pop-up boxes."
|
|
|
|
"\n"
|
|
|
|
"CMake Warning and Error message text displays using a simple "
|
|
|
|
"markup language. "
|
|
|
|
"Non-indented text is formatted in line-wrapped paragraphs delimited "
|
|
|
|
"by newlines. "
|
|
|
|
"Indented text is considered pre-formatted."
|
|
|
|
;
|
2001-06-05 00:55:11 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-06-05 00:55:11 +04:00
|
|
|
cmTypeMacro(cmMessageCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|