diff options
author | Brad King <brad.king@kitware.com> | 2001-05-03 20:55:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-05-03 20:55:41 (GMT) |
commit | 5e4a89b1b954894a68e36b31e4be4713c5db1f1f (patch) | |
tree | 57daa130d3fd260b62e1afa37d755e934af15c2e /Source/MFCDialog | |
parent | 5079efdc68c94d93a2b77e5b42dd229de2a77836 (diff) | |
download | CMake-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.cpp | 17 |
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(); } } |