2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2006-12-01 21:35:21 +03:00
|
|
|
#ifndef cmProperty_h
|
|
|
|
#define cmProperty_h
|
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include <string>
|
2006-12-01 21:35:21 +03:00
|
|
|
|
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
|