2016-09-27 15:01:08 -04: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 13:35:21 -05:00
|
|
|
#ifndef cmProperty_h
|
|
|
|
#define cmProperty_h
|
|
|
|
|
2017-04-11 22:00:21 +02:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-08-24 00:29:15 +02:00
|
|
|
|
|
|
|
#include <string>
|
2006-12-01 13:35:21 -05:00
|
|
|
|
2012-08-13 13:42:58 -04:00
|
|
|
class cmProperty
|
2006-12-01 13:35:21 -05:00
|
|
|
{
|
|
|
|
public:
|
2016-05-16 10:34:04 -04:00
|
|
|
enum ScopeType
|
|
|
|
{
|
|
|
|
TARGET,
|
|
|
|
SOURCE_FILE,
|
|
|
|
DIRECTORY,
|
|
|
|
GLOBAL,
|
|
|
|
CACHE,
|
|
|
|
TEST,
|
|
|
|
VARIABLE,
|
|
|
|
CACHED_VARIABLE,
|
|
|
|
INSTALL
|
|
|
|
};
|
2006-12-01 13:35:21 -05:00
|
|
|
|
|
|
|
// set this property
|
2016-05-16 10:34:04 -04:00
|
|
|
void Set(const char* value);
|
2006-12-01 13:35:21 -05:00
|
|
|
|
2008-01-17 18:13:55 -05:00
|
|
|
// append to this property
|
2016-05-16 10:34:04 -04:00
|
|
|
void Append(const char* value, bool asString = false);
|
2008-01-17 18:13:55 -05:00
|
|
|
|
2006-12-01 13:35:21 -05:00
|
|
|
// get the value
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* GetValue() const;
|
2006-12-01 13:35:21 -05:00
|
|
|
|
|
|
|
// construct with the value not set
|
2014-04-03 21:35:22 +02:00
|
|
|
cmProperty() { this->ValueHasBeenSet = false; }
|
2006-12-01 13:35:21 -05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string Value;
|
|
|
|
bool ValueHasBeenSet;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|