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