2001-02-12 22:26:25 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Copyright (c) 2001 Insight Consortium
|
|
|
|
All rights reserved.
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
2001-02-12 22:26:25 +03:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* The name of the Insight Consortium, nor the names of any consortium members,
|
|
|
|
nor of any contributors, may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
* Modified source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2001-02-12 22:26:25 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
|
|
|
|
#include "cmCacheManager.h"
|
|
|
|
#include "cmSystemTools.h"
|
2001-02-19 23:13:48 +03:00
|
|
|
#include "cmCacheManager.h"
|
|
|
|
#include "cmMakefile.h"
|
2001-02-23 03:24:43 +03:00
|
|
|
#include "cmRegularExpression.h"
|
2001-06-07 22:52:29 +04:00
|
|
|
#include "stdio.h"
|
2001-02-12 22:26:25 +03:00
|
|
|
|
|
|
|
const char* cmCacheManagerTypes[] =
|
|
|
|
{ "BOOL",
|
|
|
|
"PATH",
|
2001-02-19 23:13:48 +03:00
|
|
|
"FILEPATH",
|
2001-02-12 22:26:25 +03:00
|
|
|
"STRING",
|
2001-04-12 23:34:09 +04:00
|
|
|
"INTERNAL",
|
2001-05-16 23:15:21 +04:00
|
|
|
"STATIC",
|
2001-02-12 22:26:25 +03:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
cmCacheManager::CacheEntryType cmCacheManager::StringToType(const char* s)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
while(cmCacheManagerTypes[i])
|
|
|
|
{
|
|
|
|
if(strcmp(s, cmCacheManagerTypes[i]) == 0)
|
|
|
|
{
|
|
|
|
return static_cast<CacheEntryType>(i);
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
++i;
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
return STRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-04 18:18:03 +04:00
|
|
|
struct CleanUpCacheManager
|
|
|
|
{
|
|
|
|
~CleanUpCacheManager()
|
|
|
|
{
|
|
|
|
delete cmCacheManager::GetInstance();
|
|
|
|
}
|
|
|
|
void Use() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
CleanUpCacheManager cleanup;
|
|
|
|
|
2001-02-12 22:26:25 +03:00
|
|
|
cmCacheManager* cmCacheManager::s_Instance = 0;
|
|
|
|
|
|
|
|
cmCacheManager* cmCacheManager::GetInstance()
|
|
|
|
{
|
|
|
|
if(!cmCacheManager::s_Instance)
|
|
|
|
{
|
2001-06-04 18:18:03 +04:00
|
|
|
cleanup.Use();
|
2001-02-12 22:26:25 +03:00
|
|
|
cmCacheManager::s_Instance = new cmCacheManager;
|
|
|
|
}
|
|
|
|
return cmCacheManager::s_Instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-02-19 23:13:48 +03:00
|
|
|
bool cmCacheManager::LoadCache(cmMakefile* mf)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2001-04-26 00:09:17 +04:00
|
|
|
return this->LoadCache(mf->GetHomeOutputDirectory());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool cmCacheManager::LoadCache(const char* path)
|
2001-05-09 01:04:22 +04:00
|
|
|
{
|
2001-05-09 01:37:55 +04:00
|
|
|
return this->LoadCache(path,true);
|
2001-05-09 01:04:22 +04:00
|
|
|
}
|
|
|
|
bool cmCacheManager::LoadCache(const char* path,
|
|
|
|
bool internal)
|
2001-04-26 00:09:17 +04:00
|
|
|
{
|
|
|
|
std::string cacheFile = path;
|
2001-02-19 23:13:48 +03:00
|
|
|
cacheFile += "/CMakeCache.txt";
|
2001-05-09 19:15:57 +04:00
|
|
|
// clear the old cache, if we are reading in internal values
|
|
|
|
if ( internal )
|
|
|
|
{
|
|
|
|
m_Cache.clear();
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
std::ifstream fin(cacheFile.c_str());
|
2001-02-12 22:26:25 +03:00
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const int bsize = 4096;
|
|
|
|
char buffer[bsize];
|
2001-02-23 03:24:43 +03:00
|
|
|
// input line is: key:type=value
|
2001-05-17 02:08:14 +04:00
|
|
|
cmRegularExpression reg("^([^:]*):([^=]*)=(.*)$");
|
2001-06-07 22:52:29 +04:00
|
|
|
// input line is: "key":type=value
|
|
|
|
cmRegularExpression regQuoted("^\"([^\"]*)\":([^=]*)=(.*)$");
|
2001-02-12 22:26:25 +03:00
|
|
|
while(fin)
|
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
// Format is key:type=value
|
2001-02-12 22:26:25 +03:00
|
|
|
CacheEntry e;
|
2001-02-23 03:24:43 +03:00
|
|
|
fin.getline(buffer, bsize);
|
|
|
|
// skip blank lines and comment lines
|
|
|
|
if(buffer[0] == '#' || buffer[0] == 0)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
continue;
|
|
|
|
}
|
2001-04-26 22:53:44 +04:00
|
|
|
while(buffer[0] == '/')
|
|
|
|
{
|
|
|
|
e.m_HelpString += &buffer[2];
|
|
|
|
fin.getline(buffer, bsize);
|
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2001-06-07 22:52:29 +04:00
|
|
|
if(regQuoted.find(buffer))
|
|
|
|
{
|
|
|
|
e.m_Type = cmCacheManager::StringToType(regQuoted.match(2).c_str());
|
|
|
|
// only load internal values if internal is set
|
|
|
|
if (internal || e.m_Type != INTERNAL)
|
|
|
|
{
|
|
|
|
e.m_Value = regQuoted.match(3);
|
|
|
|
m_Cache[regQuoted.match(1)] = e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (reg.find(buffer))
|
2001-02-23 03:24:43 +03:00
|
|
|
{
|
|
|
|
e.m_Type = cmCacheManager::StringToType(reg.match(2).c_str());
|
2001-05-09 01:04:22 +04:00
|
|
|
// only load internal values if internal is set
|
|
|
|
if (internal || e.m_Type != INTERNAL)
|
|
|
|
{
|
|
|
|
e.m_Value = reg.match(3);
|
|
|
|
m_Cache[reg.match(1)] = e;
|
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Parse error in cache file ", cacheFile.c_str());
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
}
|
2001-06-07 22:52:29 +04:00
|
|
|
// if CMAKE version not found in the list file
|
|
|
|
// add them as version 0.0
|
|
|
|
if(!this->GetCacheValue("CMAKE_CACHE_MINOR_VERSION"))
|
|
|
|
{
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", "0",
|
|
|
|
"Minor version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", "0",
|
|
|
|
"Major version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
|
|
|
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
return true;
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
|
2001-05-02 00:28:32 +04:00
|
|
|
void cmCacheManager::DefineCache(cmMakefile *mf)
|
|
|
|
{
|
|
|
|
if (!mf)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add definition to the makefile
|
|
|
|
for( std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
|
|
|
|
i != m_Cache.end(); ++i)
|
|
|
|
{
|
|
|
|
const CacheEntry& ce = (*i).second;
|
|
|
|
mf->AddDefinition((*i).first.c_str(), ce.m_Value.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-07 22:52:29 +04:00
|
|
|
bool cmCacheManager::SaveCache(cmMakefile* mf)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2001-04-26 00:09:17 +04:00
|
|
|
return this->SaveCache(mf->GetHomeOutputDirectory());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-07 22:52:29 +04:00
|
|
|
bool cmCacheManager::SaveCache(const char* path)
|
2001-04-26 00:09:17 +04:00
|
|
|
{
|
|
|
|
std::string cacheFile = path;
|
2001-02-19 23:13:48 +03:00
|
|
|
cacheFile += "/CMakeCache.txt";
|
2001-02-23 03:24:43 +03:00
|
|
|
std::string tempFile = cacheFile;
|
|
|
|
tempFile += ".tmp";
|
|
|
|
std::ofstream fout(tempFile.c_str());
|
2001-02-12 22:26:25 +03:00
|
|
|
if(!fout)
|
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
cmSystemTools::Error("Unable to open cache file for save. ",
|
|
|
|
cacheFile.c_str());
|
2001-02-12 22:26:25 +03:00
|
|
|
return false;
|
|
|
|
}
|
2001-06-07 22:52:29 +04:00
|
|
|
// before writting the cache, update the version numbers
|
|
|
|
// to the
|
|
|
|
char temp[1024];
|
|
|
|
sprintf(temp, "%d", cmMakefile::GetMinorVersion());
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MINOR_VERSION", temp,
|
|
|
|
"Minor version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
|
|
|
sprintf(temp, "%d", cmMakefile::GetMajorVersion());
|
|
|
|
this->AddCacheEntry("CMAKE_CACHE_MAJOR_VERSION", temp,
|
|
|
|
"Major version of cmake used to create the "
|
|
|
|
"current loaded cache", cmCacheManager::INTERNAL);
|
2001-02-23 03:24:43 +03:00
|
|
|
fout << "# This is the CMakeCache file.\n"
|
2001-04-26 00:09:17 +04:00
|
|
|
<< "# For build in directory: " << path << "\n"
|
2001-02-23 03:24:43 +03:00
|
|
|
<< "# You can edit this file to change values found and used by cmake.\n"
|
|
|
|
<< "# If you do not want to change any of the values, simply exit the editor.\n"
|
|
|
|
<< "# If you do want to change a value, simply edit, save, and exit the editor.\n"
|
|
|
|
<< "# The syntax for the file is as follows:\n"
|
|
|
|
<< "# KEY:TYPE=VALUE\n"
|
|
|
|
<< "# KEY is the name of a varible in the cache.\n"
|
|
|
|
<< "# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.\n"
|
|
|
|
<< "# VALUE is the current value for the KEY.\n\n";
|
|
|
|
|
2001-05-11 22:49:46 +04:00
|
|
|
fout << "########################\n";
|
|
|
|
fout << "# EXTERNAL cache entries\n";
|
|
|
|
fout << "########################\n";
|
|
|
|
fout << "\n";
|
|
|
|
|
2001-05-08 02:11:16 +04:00
|
|
|
for( std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
|
|
|
|
i != m_Cache.end(); ++i)
|
|
|
|
{
|
|
|
|
const CacheEntry& ce = (*i).second;
|
|
|
|
CacheEntryType t = ce.m_Type;
|
|
|
|
if(t != INTERNAL)
|
|
|
|
{
|
|
|
|
// Format is key:type=value
|
|
|
|
cmCacheManager::OutputHelpString(fout, ce.m_HelpString);
|
2001-06-07 22:52:29 +04:00
|
|
|
std::string key;
|
|
|
|
// support : in key name by double quoting
|
|
|
|
if((*i).first.find(':') != std::string::npos)
|
|
|
|
{
|
|
|
|
key = "\"";
|
|
|
|
key += i->first;
|
|
|
|
key += "\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key = i->first;
|
|
|
|
}
|
|
|
|
fout << key.c_str() << ":"
|
2001-05-08 02:11:16 +04:00
|
|
|
<< cmCacheManagerTypes[t] << "="
|
2001-05-11 22:49:46 +04:00
|
|
|
<< ce.m_Value << "\n\n";
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
|
|
|
}
|
2001-05-11 22:49:46 +04:00
|
|
|
|
|
|
|
fout << "\n";
|
|
|
|
fout << "########################\n";
|
|
|
|
fout << "# INTERNAL cache entries\n";
|
|
|
|
fout << "########################\n";
|
|
|
|
fout << "\n";
|
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
for( std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
|
2001-02-12 22:26:25 +03:00
|
|
|
i != m_Cache.end(); ++i)
|
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
const CacheEntry& ce = (*i).second;
|
|
|
|
CacheEntryType t = ce.m_Type;
|
2001-05-08 02:11:16 +04:00
|
|
|
if(t == INTERNAL)
|
|
|
|
{
|
|
|
|
// Format is key:type=value
|
|
|
|
cmCacheManager::OutputHelpString(fout, ce.m_HelpString);
|
2001-06-07 22:52:29 +04:00
|
|
|
std::string key;
|
|
|
|
// support : in key name by double quoting
|
|
|
|
if((*i).first.find(':') != std::string::npos)
|
|
|
|
{
|
|
|
|
key = "\"";
|
|
|
|
key += i->first;
|
|
|
|
key += "\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key = i->first;
|
|
|
|
}
|
|
|
|
fout << key.c_str() << ":"
|
2001-05-08 02:11:16 +04:00
|
|
|
<< cmCacheManagerTypes[t] << "="
|
|
|
|
<< ce.m_Value << "\n";
|
|
|
|
}
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
fout << "\n";
|
2001-02-23 03:24:43 +03:00
|
|
|
fout.close();
|
|
|
|
cmSystemTools::CopyFileIfDifferent(tempFile.c_str(),
|
|
|
|
cacheFile.c_str());
|
|
|
|
cmSystemTools::RemoveFile(tempFile.c_str());
|
2001-02-19 23:13:48 +03:00
|
|
|
return true;
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
void cmCacheManager::OutputHelpString(std::ofstream& fout,
|
|
|
|
const std::string& helpString)
|
2001-04-24 00:40:29 +04:00
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
std::string::size_type end = helpString.size();
|
|
|
|
if(end == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::string oneLine;
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type nextBreak = 60;
|
|
|
|
bool done = false;
|
|
|
|
|
|
|
|
while(!done)
|
|
|
|
{
|
|
|
|
if(nextBreak >= end)
|
|
|
|
{
|
|
|
|
nextBreak = end;
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while(nextBreak < end && helpString[nextBreak] != ' ')
|
|
|
|
{
|
|
|
|
nextBreak++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
oneLine = helpString.substr(pos, nextBreak - pos);
|
|
|
|
fout << "//" << oneLine.c_str() << "\n";
|
|
|
|
pos = nextBreak;
|
|
|
|
nextBreak += 60;
|
|
|
|
}
|
2001-04-24 00:40:29 +04:00
|
|
|
}
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
void cmCacheManager::RemoveCacheEntry(const char* key)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
m_Cache.erase(key);
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
cmCacheManager::CacheEntry *cmCacheManager::GetCacheEntry(const char* key)
|
2001-02-12 22:26:25 +03:00
|
|
|
{
|
|
|
|
if(m_Cache.count(key))
|
|
|
|
{
|
2001-04-25 00:49:12 +04:00
|
|
|
return &(m_Cache.find(key)->second);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmCacheManager::GetCacheValue(const char* key) const
|
|
|
|
{
|
|
|
|
if(m_Cache.count(key))
|
|
|
|
{
|
|
|
|
return m_Cache.find(key)->second.m_Value.c_str();
|
2001-02-12 22:26:25 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
|
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
bool cmCacheManager::IsOn(const char* key) const
|
2001-04-24 20:40:37 +04:00
|
|
|
{
|
|
|
|
if(!m_Cache.count(key))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2001-04-25 00:49:12 +04:00
|
|
|
const std::string &v = m_Cache.find(key)->second.m_Value;
|
2001-04-26 18:49:12 +04:00
|
|
|
return cmSystemTools::IsOn(v.c_str());
|
2001-04-24 20:40:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
void cmCacheManager::PrintCache(std::ostream& out) const
|
2001-02-23 03:24:43 +03:00
|
|
|
{
|
|
|
|
out << "=================================================" << std::endl;
|
|
|
|
out << "CMakeCache Contents:" << std::endl;
|
2001-04-25 00:49:12 +04:00
|
|
|
for(std::map<std::string, CacheEntry>::const_iterator i = m_Cache.begin();
|
2001-02-23 03:24:43 +03:00
|
|
|
i != m_Cache.end(); ++i)
|
|
|
|
{
|
2001-05-08 02:11:16 +04:00
|
|
|
if((*i).second.m_Type != INTERNAL)
|
|
|
|
{
|
|
|
|
out << (*i).first.c_str() << " = " << (*i).second.m_Value.c_str() << std::endl;
|
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
}
|
|
|
|
out << "\n\n";
|
|
|
|
out << "To change values in the CMakeCache, \nedit CMakeCache.txt in your output directory.\n";
|
|
|
|
out << "=================================================" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-26 22:53:44 +04:00
|
|
|
void cmCacheManager::AddCacheEntry(const char* key,
|
|
|
|
const char* value,
|
|
|
|
const char* helpString,
|
|
|
|
CacheEntryType type)
|
|
|
|
{
|
|
|
|
CacheEntry e;
|
|
|
|
e.m_Value = value;
|
|
|
|
e.m_Type = type;
|
2001-05-04 19:30:46 +04:00
|
|
|
// make sure we only use unix style paths
|
|
|
|
if(type == FILEPATH || type == PATH)
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(e.m_Value);
|
|
|
|
}
|
2001-04-26 22:53:44 +04:00
|
|
|
e.m_HelpString = helpString;
|
|
|
|
m_Cache[key] = e;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCacheManager::AddCacheEntry(const char* key, bool v,
|
|
|
|
const char* helpString)
|
2001-04-24 20:40:37 +04:00
|
|
|
{
|
|
|
|
if(v)
|
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
this->AddCacheEntry(key, "ON", helpString, cmCacheManager::BOOL);
|
2001-04-24 20:40:37 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-04-26 22:53:44 +04:00
|
|
|
this->AddCacheEntry(key, "OFF", helpString, cmCacheManager::BOOL);
|
2001-04-24 20:40:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|