2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2010-12-07 21:23:38 +00:00
|
|
|
#ifndef cmCustomCommandGenerator_h
|
|
|
|
#define cmCustomCommandGenerator_h
|
|
|
|
|
2017-04-11 20:00:21 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2017-01-14 02:01:17 +00:00
|
|
|
#include "cmCustomCommandLines.h"
|
2016-09-01 18:05:48 +00:00
|
|
|
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2010-12-07 21:23:38 +00:00
|
|
|
|
|
|
|
class cmCustomCommand;
|
2010-12-08 21:13:07 +00:00
|
|
|
class cmGeneratorExpression;
|
2016-09-01 18:59:28 +00:00
|
|
|
class cmLocalGenerator;
|
2010-12-07 21:23:38 +00:00
|
|
|
|
|
|
|
class cmCustomCommandGenerator
|
|
|
|
{
|
|
|
|
cmCustomCommand const& CC;
|
2014-02-10 03:48:34 +00:00
|
|
|
std::string Config;
|
2015-07-25 15:52:10 +00:00
|
|
|
cmLocalGenerator* LG;
|
2010-12-07 21:23:38 +00:00
|
|
|
bool OldStyle;
|
|
|
|
bool MakeVars;
|
2010-12-08 21:13:07 +00:00
|
|
|
cmGeneratorExpression* GE;
|
2014-03-07 16:20:10 +00:00
|
|
|
mutable bool DependsDone;
|
|
|
|
mutable std::vector<std::string> Depends;
|
2017-01-14 02:01:17 +00:00
|
|
|
cmCustomCommandLines CommandLines;
|
2016-05-16 14:34:04 +00:00
|
|
|
|
2016-10-28 15:33:02 +00:00
|
|
|
const char* GetCrossCompilingEmulator(unsigned int c) const;
|
|
|
|
const char* GetArgv0Location(unsigned int c) const;
|
|
|
|
|
2010-12-07 21:23:38 +00:00
|
|
|
public:
|
2014-02-10 03:48:34 +00:00
|
|
|
cmCustomCommandGenerator(cmCustomCommand const& cc,
|
2016-05-16 14:34:04 +00:00
|
|
|
const std::string& config, cmLocalGenerator* lg);
|
2010-12-08 21:13:07 +00:00
|
|
|
~cmCustomCommandGenerator();
|
2014-03-10 19:47:19 +00:00
|
|
|
cmCustomCommand const& GetCC() const { return this->CC; }
|
2010-12-07 21:23:38 +00:00
|
|
|
unsigned int GetNumberOfCommands() const;
|
|
|
|
std::string GetCommand(unsigned int c) const;
|
|
|
|
void AppendArguments(unsigned int c, std::string& cmd) const;
|
2014-03-10 19:47:19 +00:00
|
|
|
const char* GetComment() const;
|
|
|
|
std::string GetWorkingDirectory() const;
|
|
|
|
std::vector<std::string> const& GetOutputs() const;
|
2014-11-13 23:54:52 +00:00
|
|
|
std::vector<std::string> const& GetByproducts() const;
|
2014-03-10 19:47:19 +00:00
|
|
|
std::vector<std::string> const& GetDepends() const;
|
2010-12-07 21:23:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|