2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-04-15 21:58:10 +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.
|
2004-04-15 21:58:10 +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.
|
|
|
|
============================================================================*/
|
2004-04-15 21:58:10 +04:00
|
|
|
#ifndef cmRemoveDefinitionsCommand_h
|
|
|
|
#define cmRemoveDefinitionsCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmRemoveDefinitionsCommand
|
|
|
|
* \brief Specify a list of compiler defines
|
|
|
|
*
|
2006-03-10 19:13:15 +03:00
|
|
|
* cmRemoveDefinitionsCommand specifies a list of compiler defines.
|
|
|
|
* These defines will
|
2004-04-15 21:58:10 +04:00
|
|
|
* be removed from the compile command.
|
|
|
|
*/
|
|
|
|
class cmRemoveDefinitionsCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmRemoveDefinitionsCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
2004-04-15 21:58:10 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2007-10-10 19:47:43 +04:00
|
|
|
virtual const char* GetName() {return "remove_definitions";}
|
2004-04-15 21:58:10 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2008-01-18 03:29:43 +03:00
|
|
|
return "Removes -D define flags added by add_definitions.";
|
2004-04-15 21:58:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" remove_definitions(-DFOO -DBAR ...)\n"
|
2008-01-18 03:29:43 +03:00
|
|
|
"Removes flags (added by add_definitions) from the compiler command "
|
|
|
|
"line for sources in the current directory and below.";
|
2004-04-15 21:58:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmRemoveDefinitionsCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|