2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-12-01 21:35:21 +03:00
|
|
|
#include "cmPropertyDefinitionMap.h"
|
|
|
|
#include "cmSystemTools.h"
|
2007-10-22 20:49:09 +04:00
|
|
|
#include "cmDocumentationSection.h"
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
void cmPropertyDefinitionMap
|
|
|
|
::DefineProperty(const char *name, cmProperty::ScopeType scope,
|
|
|
|
const char *ShortDescription,
|
|
|
|
const char *FullDescription,
|
|
|
|
bool chain)
|
|
|
|
{
|
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmPropertyDefinitionMap::iterator it = this->find(name);
|
|
|
|
cmPropertyDefinition *prop;
|
|
|
|
if (it == this->end())
|
|
|
|
{
|
|
|
|
prop = &(*this)[name];
|
2012-08-13 21:42:58 +04:00
|
|
|
prop->DefineProperty(name,scope,ShortDescription, FullDescription,
|
2013-09-17 17:08:58 +04:00
|
|
|
chain);
|
2006-12-01 21:35:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmPropertyDefinitionMap::IsPropertyDefined(const char *name)
|
|
|
|
{
|
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmPropertyDefinitionMap::iterator it = this->find(name);
|
|
|
|
if (it == this->end())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmPropertyDefinitionMap::IsPropertyChained(const char *name)
|
|
|
|
{
|
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmPropertyDefinitionMap::iterator it = this->find(name);
|
|
|
|
if (it == this->end())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return it->second.IsChained();
|
|
|
|
}
|