2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-11 22:59:02 +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.
|
2001-04-11 22:59:02 +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.
|
|
|
|
============================================================================*/
|
2001-04-11 22:59:02 +04:00
|
|
|
#ifndef cmCustomCommand_h
|
|
|
|
#define cmCustomCommand_h
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmCustomCommandLines.h"
|
2014-05-23 22:59:11 +04:00
|
|
|
#include "cmListFileCache.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2010-12-06 22:33:59 +03:00
|
|
|
class cmMakefile;
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2001-04-19 21:28:46 +04:00
|
|
|
/** \class cmCustomCommand
|
|
|
|
* \brief A class to encapsulate a custom command
|
|
|
|
*
|
|
|
|
* cmCustomCommand encapsulates the properties of a custom command
|
|
|
|
*/
|
2001-04-11 22:59:02 +04:00
|
|
|
class cmCustomCommand
|
|
|
|
{
|
|
|
|
public:
|
2005-02-22 18:32:44 +03:00
|
|
|
/** Default and copy constructors for STL containers. */
|
|
|
|
cmCustomCommand();
|
2001-04-19 21:28:46 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
/** Main constructor specifies all information for the command. */
|
2014-01-21 19:33:30 +04:00
|
|
|
cmCustomCommand(cmMakefile const* mf,
|
2010-12-06 22:33:59 +03:00
|
|
|
const std::vector<std::string>& outputs,
|
2014-11-14 02:54:52 +03:00
|
|
|
const std::vector<std::string>& byproducts,
|
2005-02-22 18:32:44 +03:00
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommandLines& commandLines,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* comment, const char* workingDirectory);
|
2001-09-05 00:07:54 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
/** Get the output file produced by the command. */
|
2006-04-11 19:06:19 +04:00
|
|
|
const std::vector<std::string>& GetOutputs() const;
|
2003-06-03 18:30:23 +04:00
|
|
|
|
2014-11-14 02:54:52 +03:00
|
|
|
/** Get the extra files produced by the command. */
|
|
|
|
const std::vector<std::string>& GetByproducts() const;
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
/** Get the vector that holds the list of dependencies. */
|
|
|
|
const std::vector<std::string>& GetDepends() const;
|
|
|
|
|
2014-03-10 21:53:57 +04:00
|
|
|
/** Get the working directory. */
|
|
|
|
std::string const& GetWorkingDirectory() const
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
return this->WorkingDirectory;
|
|
|
|
}
|
2014-03-10 21:53:57 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
/** Get the list of command lines. */
|
|
|
|
const cmCustomCommandLines& GetCommandLines() const;
|
|
|
|
|
|
|
|
/** Get the comment string for the command. */
|
|
|
|
const char* GetComment() const;
|
2002-12-11 00:47:37 +03:00
|
|
|
|
2006-10-04 23:24:26 +04:00
|
|
|
/** Append to the list of command lines. */
|
|
|
|
void AppendCommands(const cmCustomCommandLines& commandLines);
|
|
|
|
|
|
|
|
/** Append to the list of dependencies. */
|
|
|
|
void AppendDepends(const std::vector<std::string>& depends);
|
|
|
|
|
2006-09-27 21:43:46 +04:00
|
|
|
/** Set/Get whether old-style escaping should be used. */
|
|
|
|
bool GetEscapeOldStyle() const;
|
|
|
|
void SetEscapeOldStyle(bool b);
|
|
|
|
|
|
|
|
/** Set/Get whether the build tool can replace variables in
|
|
|
|
arguments to the command. */
|
|
|
|
bool GetEscapeAllowMakeVars() const;
|
|
|
|
void SetEscapeAllowMakeVars(bool b);
|
|
|
|
|
2010-12-06 22:33:59 +03:00
|
|
|
/** Backtrace of the command that created this custom command. */
|
|
|
|
cmListFileBacktrace const& GetBacktrace() const;
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
typedef std::pair<std::string, std::string> ImplicitDependsPair;
|
2016-05-16 17:34:04 +03:00
|
|
|
class ImplicitDependsList : public std::vector<ImplicitDependsPair>
|
|
|
|
{
|
|
|
|
};
|
2007-09-17 18:50:46 +04:00
|
|
|
void SetImplicitDepends(ImplicitDependsList const&);
|
|
|
|
void AppendImplicitDepends(ImplicitDependsList const&);
|
|
|
|
ImplicitDependsList const& GetImplicitDepends() const;
|
|
|
|
|
2014-11-05 23:37:52 +03:00
|
|
|
/** Set/Get whether this custom command should be given access to the
|
|
|
|
real console (if possible). */
|
|
|
|
bool GetUsesTerminal() const;
|
|
|
|
void SetUsesTerminal(bool b);
|
|
|
|
|
2016-08-05 15:39:31 +03:00
|
|
|
/** Set/Get the depfile (used by the Ninja generator) */
|
|
|
|
const std::string& GetDepfile() const;
|
|
|
|
void SetDepfile(const std::string& depfile);
|
|
|
|
|
2001-04-19 21:28:46 +04:00
|
|
|
private:
|
2006-04-11 19:06:19 +04:00
|
|
|
std::vector<std::string> Outputs;
|
2014-11-14 02:54:52 +03:00
|
|
|
std::vector<std::string> Byproducts;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> Depends;
|
|
|
|
cmCustomCommandLines CommandLines;
|
2015-06-07 11:44:59 +03:00
|
|
|
cmListFileBacktrace Backtrace;
|
|
|
|
ImplicitDependsList ImplicitDepends;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string Comment;
|
|
|
|
std::string WorkingDirectory;
|
2016-08-05 15:39:31 +03:00
|
|
|
std::string Depfile;
|
2015-06-07 11:44:59 +03:00
|
|
|
bool HaveComment;
|
2006-09-27 21:43:46 +04:00
|
|
|
bool EscapeAllowMakeVars;
|
|
|
|
bool EscapeOldStyle;
|
2014-11-05 23:37:52 +03:00
|
|
|
bool UsesTerminal;
|
2001-04-11 22:59:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|