summaryrefslogtreecommitdiffstats
path: root/Source/MFCDialog
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-05-03 20:55:41 (GMT)
committerBrad King <brad.king@kitware.com>2001-05-03 20:55:41 (GMT)
commit5e4a89b1b954894a68e36b31e4be4713c5db1f1f (patch)
tree57daa130d3fd260b62e1afa37d755e934af15c2e /Source/MFCDialog
parent5079efdc68c94d93a2b77e5b42dd229de2a77836 (diff)
downloadCMake-5e4a89b1b954894a68e36b31e4be4713c5db1f1f.zip
CMake-5e4a89b1b954894a68e36b31e4be4713c5db1f1f.tar.gz
CMake-5e4a89b1b954894a68e36b31e4be4713c5db1f1f.tar.bz2
ENH: Added generation of internal CMAKE cache entry with path to command-line CMake executable.
Diffstat (limited to 'Source/MFCDialog')
-rw-r--r--Source/MFCDialog/CMakeSetupDialog.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp
index 6277fe7..2cc6552 100644
--- a/Source/MFCDialog/CMakeSetupDialog.cpp
+++ b/Source/MFCDialog/CMakeSetupDialog.cpp
@@ -469,7 +469,6 @@ void CMakeSetupDialog::OnChangeWhereBuild()
{
m_CacheEntriesList.RemoveAll();
}
-
}
void CMakeSetupDialog::OnChangeWhereSource()
@@ -483,6 +482,22 @@ void CMakeSetupDialog::LoadCacheFromDiskToGUI()
if(m_WhereBuild != "")
{
cmCacheManager::GetInstance()->LoadCache(m_WhereBuild);
+
+ // Make sure the internal "CMAKE" cache entry is set.
+ const char* cacheValue = cmCacheManager::GetInstance()->GetCacheValue("CMAKE");
+ if(!cacheValue)
+ {
+ // Find our own exectuable.
+ std::string cMakeCMD = "\""+cmSystemTools::GetProgramPath(_pgmptr);
+ cMakeCMD += "/CMakeSetupCMD.exe\"";
+
+ // Save the value in the cache
+ cmCacheManager::GetInstance()->AddCacheEntry("CMAKE",
+ cMakeCMD.c_str(),
+ "Path to CMake executable.",
+ cmCacheManager::INTERNAL);
+ }
+
this->FillCacheGUIFromCacheManager();
}
}