Merge branch 'cmake-gui-fix-extra-generator-names' into release

This commit is contained in:
Brad King 2016-10-11 08:42:16 -04:00
commit d0255d55e1
1 changed files with 1 additions and 1 deletions

View File

@ -929,7 +929,7 @@ void cmake::GetRegisteredGenerators(
gen != genList.end(); ++gen) {
GeneratorInfo info;
info.name = cmExternalMakefileProjectGenerator::CreateFullGeneratorName(
(*i)->GetName(), *gen);
*gen, (*i)->GetName());
info.baseName = *gen;
info.extraName = (*i)->GetName();
info.supportsPlatform = false;