Merge topic 'string-apis-fix-cmake-gui'
ae32622b
cmake-gui: Fix handling of missing CMAKE_EXTRA_GENERATOR (#14804)
This commit is contained in:
commit
5ef2bb4b86
|
@ -117,7 +117,7 @@ void QCMake::setBinaryDirectory(const QString& _dir)
|
|||
{
|
||||
const char* extraGen = cachem->GetCacheValue("CMAKE_EXTRA_GENERATOR");
|
||||
std::string curGen = cmExternalMakefileProjectGenerator::
|
||||
CreateFullGeneratorName(itm.GetValue(), extraGen);
|
||||
CreateFullGeneratorName(itm.GetValue(), extraGen? extraGen : "");
|
||||
this->setGenerator(QString::fromLocal8Bit(curGen.c_str()));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue