BUG: If a directory is specified on the command line that is not an existing build tree, we should still use any -G option that was given to set the generator.
This commit is contained in:
parent
999810bc52
commit
f86ffd72ca
|
@ -181,7 +181,7 @@ CMakeSetupDialog::CMakeSetupDialog(const CMakeCommandLineInfo& cmdInfo,
|
|||
this->m_WhereSource = _T("");
|
||||
this->m_WhereBuild = _T("");
|
||||
this->m_AdvancedValues = FALSE;
|
||||
this->m_GeneratorChoiceString = _T("");
|
||||
this->m_GeneratorChoiceString = cmdInfo.m_GeneratorChoiceString;
|
||||
this->ChangeDirectoriesFromFile((LPCTSTR)cmdInfo.m_LastUnknownParameter);
|
||||
}
|
||||
|
||||
|
@ -1422,6 +1422,8 @@ void CMakeSetupDialog::ChangeDirectoriesFromFile(const char* arg)
|
|||
|
||||
path = ConvertToWindowsPath(it.GetValue());
|
||||
m_WhereSource = path.c_str();
|
||||
|
||||
m_GeneratorChoiceString = _T("");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue