2010-12-08 00:23:38 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2010 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#ifndef cmCustomCommandGenerator_h
|
|
|
|
#define cmCustomCommandGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
class cmCustomCommand;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmLocalGenerator;
|
2010-12-09 00:13:07 +03:00
|
|
|
class cmGeneratorExpression;
|
2010-12-08 00:23:38 +03:00
|
|
|
|
|
|
|
class cmCustomCommandGenerator
|
|
|
|
{
|
|
|
|
cmCustomCommand const& CC;
|
2014-02-10 07:48:34 +04:00
|
|
|
std::string Config;
|
2010-12-08 00:23:38 +03:00
|
|
|
cmMakefile* Makefile;
|
|
|
|
cmLocalGenerator* LG;
|
|
|
|
bool OldStyle;
|
|
|
|
bool MakeVars;
|
2010-12-09 00:13:07 +03:00
|
|
|
cmGeneratorExpression* GE;
|
2014-03-07 20:20:10 +04:00
|
|
|
mutable bool DependsDone;
|
|
|
|
mutable std::vector<std::string> Depends;
|
2010-12-08 00:23:38 +03:00
|
|
|
public:
|
2014-02-10 07:48:34 +04:00
|
|
|
cmCustomCommandGenerator(cmCustomCommand const& cc,
|
|
|
|
const std::string& config,
|
2010-12-08 00:23:38 +03:00
|
|
|
cmMakefile* mf);
|
2010-12-09 00:13:07 +03:00
|
|
|
~cmCustomCommandGenerator();
|
2014-03-10 23:47:19 +04:00
|
|
|
cmCustomCommand const& GetCC() const { return this->CC; }
|
2010-12-08 00:23:38 +03:00
|
|
|
unsigned int GetNumberOfCommands() const;
|
|
|
|
std::string GetCommand(unsigned int c) const;
|
|
|
|
void AppendArguments(unsigned int c, std::string& cmd) const;
|
2014-03-10 23:47:19 +04:00
|
|
|
const char* GetComment() const;
|
|
|
|
std::string GetWorkingDirectory() const;
|
|
|
|
std::vector<std::string> const& GetOutputs() const;
|
|
|
|
std::vector<std::string> const& GetDepends() const;
|
2010-12-08 00:23:38 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|