mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
ENH: fix dumb MS warning about BOOL and performance with more code
This commit is contained in:
@@ -675,7 +675,14 @@ void CMakeSetupDialog::RunCMake(bool generateProjectFiles)
|
||||
m_CMakeInstance->CreateGlobalGenerator(m_GeneratorDialog.m_GeneratorChoiceString));
|
||||
m_CMakeInstance->SetCMakeCommand(m_PathToExecutable);
|
||||
m_CMakeInstance->LoadCache();
|
||||
m_CMakeInstance->SetSuppressDevWarnings(m_SuppressDevValue);
|
||||
if(m_SuppressDevValue)
|
||||
{
|
||||
m_CMakeInstance->SetSuppressDevWarnings(true);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_CMakeInstance->SetSuppressDevWarnings(false);
|
||||
}
|
||||
if(m_CMakeInstance->Configure() != 0)
|
||||
{
|
||||
cmSystemTools::Error(
|
||||
|
||||
Reference in New Issue
Block a user