2016-09-27 19:01:08 +00: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 18:35:21 +00:00
|
|
|
#include "cmProperty.h"
|
2016-04-29 13:40:20 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmProperty::Set(const char* value)
|
2006-12-01 18:35:21 +00:00
|
|
|
{
|
|
|
|
this->Value = value;
|
|
|
|
this->ValueHasBeenSet = true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmProperty::Append(const char* value, bool asString)
|
2008-01-17 23:13:55 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!this->Value.empty() && *value && !asString) {
|
2008-01-17 23:13:55 +00:00
|
|
|
this->Value += ";";
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2008-01-17 23:13:55 +00:00
|
|
|
this->Value += value;
|
|
|
|
this->ValueHasBeenSet = true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
const char* cmProperty::GetValue() const
|
2006-12-01 18:35:21 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (this->ValueHasBeenSet) {
|
2006-12-01 18:35:21 +00:00
|
|
|
return this->Value.c_str();
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2017-08-22 21:42:36 +00:00
|
|
|
return nullptr;
|
2006-12-01 18:35:21 +00:00
|
|
|
}
|