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 cmProperty_h
|
|
|
|
#define cmProperty_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
class cmProperty
|
|
|
|
{
|
|
|
|
public:
|
2009-03-10 18:10:42 +03:00
|
|
|
enum ScopeType { TARGET, SOURCE_FILE, DIRECTORY, GLOBAL, CACHE,
|
2007-06-25 18:34:21 +04:00
|
|
|
TEST, VARIABLE, CACHED_VARIABLE };
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
// set this property
|
|
|
|
void Set(const char *name, const char *value);
|
|
|
|
|
2008-01-18 02:13:55 +03:00
|
|
|
// append to this property
|
2011-07-14 01:14:41 +04:00
|
|
|
void Append(const char *name, const char *value, bool asString = false);
|
2008-01-18 02:13:55 +03:00
|
|
|
|
2006-12-01 21:35:21 +03:00
|
|
|
// get the value
|
|
|
|
const char *GetValue() const;
|
|
|
|
|
|
|
|
// construct with the value not set
|
|
|
|
cmProperty() { this->ValueHasBeenSet = false; };
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string Name;
|
|
|
|
std::string Value;
|
|
|
|
bool ValueHasBeenSet;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|