2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-04-23 20:20:36 +00:00
|
|
|
|
2009-09-28 15:43:28 +00:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2004-04-23 20:20:36 +00:00
|
|
|
|
2009-09-28 15:43:28 +00: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-23 20:20:36 +00:00
|
|
|
#ifndef cmSetDirectoryPropertiesCommand_h
|
|
|
|
#define cmSetDirectoryPropertiesCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
class cmSetDirectoryPropertiesCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2012-08-13 17:42:58 +00:00
|
|
|
virtual cmCommand* Clone()
|
2004-04-23 20:20:36 +00:00
|
|
|
{
|
|
|
|
return new cmSetDirectoryPropertiesCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the input file.
|
|
|
|
*/
|
2008-01-23 15:28:26 +00:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2004-04-23 20:20:36 +00:00
|
|
|
|
2005-12-07 16:39:08 +00:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2012-02-25 06:49:24 +00:00
|
|
|
virtual bool IsScriptable() const { return true; }
|
2005-12-07 16:39:08 +00:00
|
|
|
|
2004-04-23 20:20:36 +00:00
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2012-02-25 06:49:24 +00:00
|
|
|
virtual const char* GetName() const { return "set_directory_properties";}
|
2004-04-23 20:20:36 +00:00
|
|
|
|
2006-12-07 14:45:32 +00:00
|
|
|
/**
|
|
|
|
* Static entry point for use by other commands
|
|
|
|
*/
|
|
|
|
static bool RunCommand(cmMakefile *mf,
|
|
|
|
std::vector<std::string>::const_iterator ait,
|
|
|
|
std::vector<std::string>::const_iterator aitend,
|
|
|
|
std::string &errors);
|
|
|
|
|
2004-04-23 20:20:36 +00:00
|
|
|
cmTypeMacro(cmSetDirectoryPropertiesCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|