2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-27 14:25:42 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-04-27 14:25:42 -04:00
|
|
|
|
2009-09-28 11: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-05-07 18:11:16 -04:00
|
|
|
#ifndef cmConfigureFileCommand_h
|
|
|
|
#define cmConfigureFileCommand_h
|
2001-04-27 14:25:42 -04:00
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
2001-05-07 18:11:16 -04:00
|
|
|
class cmConfigureFileCommand : public cmCommand
|
2001-04-27 14:25:42 -04:00
|
|
|
{
|
|
|
|
public:
|
2005-06-16 14:05:22 -04:00
|
|
|
cmTypeMacro(cmConfigureFileCommand, cmCommand);
|
|
|
|
|
2012-08-13 13:42:58 -04:00
|
|
|
virtual cmCommand* Clone()
|
2001-04-27 14:25:42 -04:00
|
|
|
{
|
2001-05-07 18:11:16 -04:00
|
|
|
return new cmConfigureFileCommand;
|
2001-04-27 14:25:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the input file.
|
|
|
|
*/
|
2008-01-23 10:28:26 -05:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2001-04-27 14:25:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2014-02-24 20:19:17 -05:00
|
|
|
virtual std::string GetName() const { return "configure_file";}
|
2001-04-27 14:25:42 -04:00
|
|
|
|
2004-02-22 22:07:02 -05: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; }
|
2004-02-22 22:07:02 -05:00
|
|
|
|
2001-04-27 14:25:42 -04:00
|
|
|
private:
|
2004-03-28 16:00:57 -05:00
|
|
|
int ConfigureFile();
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2011-11-20 14:04:11 +01:00
|
|
|
cmNewLineStyle NewLineStyle;
|
|
|
|
|
2006-03-15 11:02:08 -05:00
|
|
|
std::string InputFile;
|
2009-09-16 15:09:19 -04:00
|
|
|
std::string OutputFile;
|
2006-03-15 11:02:08 -05:00
|
|
|
bool CopyOnly;
|
|
|
|
bool EscapeQuotes;
|
|
|
|
bool AtOnly;
|
2001-04-27 14:25:42 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|