cmCPluginAPI: Inline code to get project name.
This commit is contained in:
parent
8c6e6dd3ce
commit
c8187f414b
|
@ -116,7 +116,7 @@ const char* CCONV cmGetProjectName(void *arg)
|
|||
{
|
||||
cmMakefile *mf = static_cast<cmMakefile *>(arg);
|
||||
static std::string name;
|
||||
name = mf->GetProjectName();
|
||||
name = mf->GetStateSnapshot().GetProjectName();
|
||||
return name.c_str();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue