mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 22:30:13 -06:00
Generalize cmCustomCommandGenerator to more fields
Until now the cmCustomCommandGenerator was used only to compute the command lines of a custom command. Generalize it to get the comment, working directory, dependencies, and outputs of custom commands. Update use in all generators to support this.
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
class cmSourceFile;
|
||||
class cmSourceGroup;
|
||||
class cmCustomCommand;
|
||||
class cmCustomCommandGenerator;
|
||||
|
||||
/** \class cmLocalVisualStudioGenerator
|
||||
* \brief Base class for Visual Studio generators.
|
||||
@@ -46,8 +47,7 @@ public:
|
||||
virtual ~cmLocalVisualStudioGenerator();
|
||||
|
||||
/** Construct a script from the given list of command lines. */
|
||||
std::string ConstructScript(cmCustomCommand const& cc,
|
||||
const std::string& configName,
|
||||
std::string ConstructScript(cmCustomCommandGenerator const& ccg,
|
||||
const std::string& newline = "\n");
|
||||
|
||||
/** Label to which to jump in a batch file after a failed step in a
|
||||
|
||||
Reference in New Issue
Block a user