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