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
|
|
|
#ifndef cmPropertyMap_h
|
|
|
|
#define cmPropertyMap_h
|
|
|
|
|
|
|
|
#include "cmProperty.h"
|
|
|
|
|
|
|
|
class cmake;
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
class cmPropertyMap : public std::map<std::string,cmProperty>
|
2006-12-01 21:35:21 +03:00
|
|
|
{
|
|
|
|
public:
|
2013-09-03 00:27:32 +04:00
|
|
|
cmProperty *GetOrCreateProperty(const std::string& name);
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
void SetProperty(const std::string& name, const char *value,
|
2006-12-01 21:35:21 +03:00
|
|
|
cmProperty::ScopeType scope);
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
void AppendProperty(const std::string& name, const char* value,
|
2011-07-14 01:14:41 +04:00
|
|
|
cmProperty::ScopeType scope, bool asString=false);
|
2008-01-18 02:13:55 +03:00
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
const char *GetPropertyValue(const std::string& name,
|
2006-12-01 21:35:21 +03:00
|
|
|
cmProperty::ScopeType scope,
|
|
|
|
bool &chain) const;
|
|
|
|
|
2014-04-03 23:35:22 +04:00
|
|
|
void SetCMakeInstance(cmake *cm) { this->CMakeInstance = cm; }
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2014-04-03 23:35:22 +04:00
|
|
|
cmPropertyMap() { this->CMakeInstance = 0;}
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
cmake *CMakeInstance;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|