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"
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
class cmProperty
|
2006-12-01 21:35:21 +03:00
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
enum ScopeType
|
|
|
|
{
|
|
|
|
TARGET,
|
|
|
|
SOURCE_FILE,
|
|
|
|
DIRECTORY,
|
|
|
|
GLOBAL,
|
|
|
|
CACHE,
|
|
|
|
TEST,
|
|
|
|
VARIABLE,
|
|
|
|
CACHED_VARIABLE,
|
|
|
|
INSTALL
|
|
|
|
};
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
// set this property
|
2016-05-16 17:34:04 +03:00
|
|
|
void Set(const char* value);
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2008-01-18 02:13:55 +03:00
|
|
|
// append to this property
|
2016-05-16 17:34:04 +03:00
|
|
|
void Append(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
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* GetValue() const;
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
// construct with the value not set
|
2014-04-03 23:35:22 +04:00
|
|
|
cmProperty() { this->ValueHasBeenSet = false; }
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string Value;
|
|
|
|
bool ValueHasBeenSet;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|