ENH: allow continue if missing MSC configure file

This commit is contained in:
Bill Hoffman 2001-01-12 13:49:03 -05:00
parent c9c08bca66
commit 7ae5e97a3d
1 changed files with 1 additions and 3 deletions

View File

@ -261,11 +261,9 @@ void CMakeSetupDialog::OnOK()
configSrc += "/CMakeSetupConfig.MSC";
if(!config.Configure(configSrc.c_str()))
{
std::string error = "Error: in configuring system from: ";
std::string error = "Warning: MSC configure input not found: ";
error += configSrc;
error += "\nProject NOT created!";
::MessageBox(0, error.c_str(), "config ERROR", MB_OK);
return;
}