2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2008-02-29 23:28:46 +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.
|
2008-02-29 23:28:46 +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.
|
|
|
|
============================================================================*/
|
2008-02-29 23:28:46 +03:00
|
|
|
#ifndef cmCMakePolicyCommand_h
|
|
|
|
#define cmCMakePolicyCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmCMakePolicyCommand
|
|
|
|
* \brief Set how CMake should handle policies
|
|
|
|
*
|
2012-08-13 21:42:58 +04:00
|
|
|
* cmCMakePolicyCommand sets how CMake should deal with backwards
|
|
|
|
* compatibility policies.
|
2008-02-29 23:28:46 +03:00
|
|
|
*/
|
|
|
|
class cmCMakePolicyCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual cmCommand* Clone()
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
return new cmCMakePolicyCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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; }
|
2008-02-29 23:28:46 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2014-02-25 05:19:17 +04:00
|
|
|
virtual std::string GetName() const {return "cmake_policy";}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2008-02-29 23:28:46 +03:00
|
|
|
cmTypeMacro(cmCMakePolicyCommand, cmCommand);
|
2008-03-06 02:21:10 +03:00
|
|
|
private:
|
|
|
|
bool HandleSetMode(std::vector<std::string> const& args);
|
2008-08-18 17:53:06 +04:00
|
|
|
bool HandleGetMode(std::vector<std::string> const& args);
|
2008-03-06 02:21:10 +03:00
|
|
|
bool HandleVersionMode(std::vector<std::string> const& args);
|
2008-02-29 23:28:46 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|