mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
stringapi: Pass configuration names as strings
This commit is contained in:
@@ -22,14 +22,15 @@ class cmGeneratorExpression;
|
||||
class cmCustomCommandGenerator
|
||||
{
|
||||
cmCustomCommand const& CC;
|
||||
const char* Config;
|
||||
std::string Config;
|
||||
cmMakefile* Makefile;
|
||||
cmLocalGenerator* LG;
|
||||
bool OldStyle;
|
||||
bool MakeVars;
|
||||
cmGeneratorExpression* GE;
|
||||
public:
|
||||
cmCustomCommandGenerator(cmCustomCommand const& cc, const char* config,
|
||||
cmCustomCommandGenerator(cmCustomCommand const& cc,
|
||||
const std::string& config,
|
||||
cmMakefile* mf);
|
||||
~cmCustomCommandGenerator();
|
||||
unsigned int GetNumberOfCommands() const;
|
||||
|
||||
Reference in New Issue
Block a user