2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-04-11 14:59:02 -04:00
|
|
|
#ifndef cmCustomCommand_h
|
|
|
|
#define cmCustomCommand_h
|
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include "cmCustomCommandLines.h"
|
2014-05-23 14:59:11 -04:00
|
|
|
#include "cmListFileCache.h"
|
2016-09-01 20:59:28 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2010-12-06 14:33:59 -05:00
|
|
|
class cmMakefile;
|
2001-04-11 14:59:02 -04:00
|
|
|
|
2001-04-19 13: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 14:59:02 -04:00
|
|
|
class cmCustomCommand
|
|
|
|
{
|
|
|
|
public:
|
2005-02-22 10:32:44 -05:00
|
|
|
/** Default and copy constructors for STL containers. */
|
|
|
|
cmCustomCommand();
|
2001-04-19 13:28:46 -04:00
|
|
|
|
2005-02-22 10:32:44 -05:00
|
|
|
/** Main constructor specifies all information for the command. */
|
2014-01-21 16:33:30 +01:00
|
|
|
cmCustomCommand(cmMakefile const* mf,
|
2010-12-06 14:33:59 -05:00
|
|
|
const std::vector<std::string>& outputs,
|
2014-11-13 18:54:52 -05:00
|
|
|
const std::vector<std::string>& byproducts,
|
2005-02-22 10:32:44 -05:00
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommandLines& commandLines,
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* comment, const char* workingDirectory);
|
2001-09-04 16:07:54 -04:00
|
|
|
|
2005-02-22 10:32:44 -05:00
|
|
|
/** Get the output file produced by the command. */
|
2006-04-11 11:06:19 -04:00
|
|
|
const std::vector<std::string>& GetOutputs() const;
|
2003-06-03 10:30:23 -04:00
|
|
|
|
2014-11-13 18:54:52 -05:00
|
|
|
/** Get the extra files produced by the command. */
|
|
|
|
const std::vector<std::string>& GetByproducts() const;
|
|
|
|
|
2005-02-22 10:32:44 -05:00
|
|
|
/** Get the vector that holds the list of dependencies. */
|
|
|
|
const std::vector<std::string>& GetDepends() const;
|
|
|
|
|
2014-03-10 13:53:57 -04:00
|
|
|
/** Get the working directory. */
|
|
|
|
std::string const& GetWorkingDirectory() const
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
|
|
|
return this->WorkingDirectory;
|
|
|
|
}
|
2014-03-10 13:53:57 -04:00
|
|
|
|
2005-02-22 10:32:44 -05:00
|
|
|
/** Get the list of command lines. */
|
|
|
|
const cmCustomCommandLines& GetCommandLines() const;
|
|
|
|
|
|
|
|
/** Get the comment string for the command. */
|
|
|
|
const char* GetComment() const;
|
2002-12-10 16:47:37 -05:00
|
|
|
|
2006-10-04 15: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 13: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 14:33:59 -05:00
|
|
|
/** Backtrace of the command that created this custom command. */
|
|
|
|
cmListFileBacktrace const& GetBacktrace() const;
|
|
|
|
|
2014-02-10 00:21:34 -05:00
|
|
|
typedef std::pair<std::string, std::string> ImplicitDependsPair;
|
2016-05-16 10:34:04 -04:00
|
|
|
class ImplicitDependsList : public std::vector<ImplicitDependsPair>
|
|
|
|
{
|
|
|
|
};
|
2007-09-17 10:50:46 -04:00
|
|
|
void SetImplicitDepends(ImplicitDependsList const&);
|
|
|
|
void AppendImplicitDepends(ImplicitDependsList const&);
|
|
|
|
ImplicitDependsList const& GetImplicitDepends() const;
|
|
|
|
|
2014-11-05 21:37:52 +01:00
|
|
|
/** Set/Get whether this custom command should be given access to the
|
|
|
|
real console (if possible). */
|
|
|
|
bool GetUsesTerminal() const;
|
|
|
|
void SetUsesTerminal(bool b);
|
|
|
|
|
2017-01-13 20:01:17 -06:00
|
|
|
/** Set/Get whether lists in command lines should be expanded. */
|
|
|
|
bool GetCommandExpandLists() const;
|
|
|
|
void SetCommandExpandLists(bool b);
|
|
|
|
|
2016-08-05 14:39:31 +02:00
|
|
|
/** Set/Get the depfile (used by the Ninja generator) */
|
|
|
|
const std::string& GetDepfile() const;
|
|
|
|
void SetDepfile(const std::string& depfile);
|
|
|
|
|
2001-04-19 13:28:46 -04:00
|
|
|
private:
|
2006-04-11 11:06:19 -04:00
|
|
|
std::vector<std::string> Outputs;
|
2014-11-13 18:54:52 -05:00
|
|
|
std::vector<std::string> Byproducts;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::vector<std::string> Depends;
|
|
|
|
cmCustomCommandLines CommandLines;
|
2015-06-07 10:44:59 +02:00
|
|
|
cmListFileBacktrace Backtrace;
|
|
|
|
ImplicitDependsList ImplicitDepends;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::string Comment;
|
|
|
|
std::string WorkingDirectory;
|
2016-08-05 14:39:31 +02:00
|
|
|
std::string Depfile;
|
2015-06-07 10:44:59 +02:00
|
|
|
bool HaveComment;
|
2006-09-27 13:43:46 -04:00
|
|
|
bool EscapeAllowMakeVars;
|
|
|
|
bool EscapeOldStyle;
|
2014-11-05 21:37:52 +01:00
|
|
|
bool UsesTerminal;
|
2017-01-13 20:01:17 -06:00
|
|
|
bool CommandExpandLists;
|
2001-04-11 14:59:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|