summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-04-29 13:20:42 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-04-29 13:20:42 (GMT)
commitb0dd81e665846d8187ba83d8d39eb26fcdf2ec86 (patch)
tree2e5d6bbb61508ea794cb7cccc637a44bac48c3d9
parent0f9ee5bd0a1ebd2920bb80dc8fe45691ea5f1a30 (diff)
downloadCMake-b0dd81e665846d8187ba83d8d39eb26fcdf2ec86.zip
CMake-b0dd81e665846d8187ba83d8d39eb26fcdf2ec86.tar.gz
CMake-b0dd81e665846d8187ba83d8d39eb26fcdf2ec86.tar.bz2
BUG: remove warning about changing generators
-rw-r--r--Source/MFCDialog/CMakeSetupDialog.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp
index 1f16078..ea3611e 100644
--- a/Source/MFCDialog/CMakeSetupDialog.cpp
+++ b/Source/MFCDialog/CMakeSetupDialog.cpp
@@ -769,13 +769,6 @@ void CMakeSetupDialog::LoadCacheFromDiskToGUI()
cmCacheManager::GetInstance()->GetCacheEntry("CMAKE_GENERATOR")->m_Value;
if(m_GeneratorChoiceString != curGen.c_str())
{
- std::string message = "Warning: it is not possible to change generators for a binary tree, switching back to ";
- message += curGen;
- message += ".\nIf you want to build for ";
- message += m_GeneratorChoiceString;
- message += ", delete all the files in the binary directory or specify a new binary directory.";
- ::MessageBox(0, message.c_str(), "Warning",
- MB_OKCANCEL|MB_TASKMODAL);
m_GeneratorChoiceString = curGen.c_str();
this->UpdateData(FALSE);
}