mirror of
https://github.com/reactos/CMake.git
synced 2025-02-03 18:42:32 +00:00
ENH: Add accessor for Makefile and make SetError public
This commit is contained in:
parent
65b1771332
commit
63a34874d5
@ -49,6 +49,7 @@ public:
|
||||
*/
|
||||
void SetMakefile(cmMakefile*m)
|
||||
{m_Makefile = m; }
|
||||
cmMakefile* GetMakefile() { return m_Makefile; }
|
||||
|
||||
/**
|
||||
* This is called by the cmMakefile when the command is first
|
||||
@ -162,13 +163,17 @@ public:
|
||||
virtual bool IsA(const char *type)
|
||||
{ return cmCommand::IsTypeOf(type); }
|
||||
|
||||
protected:
|
||||
/**
|
||||
* Set the error message
|
||||
*/
|
||||
void SetError(const char* e)
|
||||
{
|
||||
m_Error = this->GetName();
|
||||
m_Error += " ";
|
||||
m_Error += e;
|
||||
}
|
||||
|
||||
protected:
|
||||
cmMakefile* m_Makefile;
|
||||
|
||||
private:
|
||||
|
Loading…
x
Reference in New Issue
Block a user