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 "cmPropertyDefinition.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmPropertyDefinition::DefineProperty(const std::string& name,
|
|
|
|
cmProperty::ScopeType scope,
|
|
|
|
const char* shortDescription,
|
|
|
|
const char* fullDescription,
|
|
|
|
bool chain)
|
2006-12-01 21:35:21 +03:00
|
|
|
{
|
|
|
|
this->Name = name;
|
|
|
|
this->Scope = scope;
|
|
|
|
this->Chained = chain;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (shortDescription) {
|
2006-12-05 18:38:36 +03:00
|
|
|
this->ShortDescription = shortDescription;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (fullDescription) {
|
2006-12-05 18:38:36 +03:00
|
|
|
this->FullDescription = fullDescription;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-12-01 21:35:21 +03:00
|
|
|
}
|