2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-11-27 02:28:27 +03: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-11-27 02:28:27 +03: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-11-27 02:28:27 +03:00
|
|
|
#ifndef cmMarkAsAdvancedCommand_h
|
|
|
|
#define cmMarkAsAdvancedCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmMarkAsAdvancedCommand
|
2011-08-05 03:03:24 +04:00
|
|
|
* \brief mark_as_advanced command
|
2001-11-27 02:28:27 +03:00
|
|
|
*
|
2011-08-05 03:03:24 +04:00
|
|
|
* cmMarkAsAdvancedCommand implements the mark_as_advanced CMake command
|
2001-11-27 02:28:27 +03:00
|
|
|
*/
|
|
|
|
class cmMarkAsAdvancedCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual cmCommand* Clone()
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
|
|
|
return new cmMarkAsAdvancedCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-11-27 02:28:27 +03: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 "mark_as_advanced";}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-11-27 02:28:27 +03:00
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetTerseDocumentation() const
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Mark cmake cached variables as advanced.";
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-11-27 02:28:27 +03:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetFullDocumentation() const
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" mark_as_advanced([CLEAR|FORCE] VAR VAR2 VAR...)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"Mark the named cached variables as advanced. An advanced variable "
|
|
|
|
"will not be displayed in any of the cmake GUIs unless the show "
|
|
|
|
"advanced option is on. "
|
|
|
|
"If CLEAR is the first argument advanced variables are changed back "
|
|
|
|
"to unadvanced. "
|
2005-11-17 17:31:43 +03:00
|
|
|
"If FORCE is the first argument, then the variable is made advanced. "
|
|
|
|
"If neither FORCE nor CLEAR is specified, new values will be marked as "
|
2003-02-15 02:47:16 +03:00
|
|
|
"advanced, but if the variable already has an advanced/non-advanced "
|
2007-06-13 18:54:28 +04:00
|
|
|
"state, it will not be changed.\n"
|
|
|
|
"It does nothing in script mode.";
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
2007-06-13 18:54:28 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
2007-10-10 19:47:43 +04:00
|
|
|
* mark_as_advanced() will have no effect in script mode, but this will
|
2007-06-13 18:54:28 +04:00
|
|
|
* make many of the modules usable in cmake/ctest scripts, (among them
|
|
|
|
* FindUnixMake.cmake used by the CTEST_BUILD command.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual bool IsScriptable() const { return true; }
|
2007-06-13 18:54:28 +04:00
|
|
|
|
2001-11-27 02:28:27 +03:00
|
|
|
cmTypeMacro(cmMarkAsAdvancedCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|