summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyDefinition.cxx
blob: 6a3174c7bf8bd5cac1f5ee8b8f73c1a6dbf3b747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#include "cmPropertyDefinition.h"

void cmPropertyDefinition::DefineProperty(const std::string& name,
                                          cmProperty::ScopeType scope,
                                          const char* shortDescription,
                                          const char* fullDescription,
                                          bool chain)
{
  this->Name = name;
  this->Scope = scope;
  this->Chained = chain;
  if (shortDescription) {
    this->ShortDescription = shortDescription;
  }
  if (fullDescription) {
    this->FullDescription = fullDescription;
  }
}
'commitgraph'>* Remove temporary hacks for the issue #13441Victor Stinner2011-11-211-46/+0 * Another temporary hack to debug the issue #13441Victor Stinner2011-11-211-0/+20 * Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximumVictor Stinner2011-11-211-0/+26 * Fix a compiler warning in _localeVictor Stinner2011-10-111-1/+1 * PyLocale_strxfrm() uses the new Unicode APIVictor Stinner2011-09-291-24/+15 * PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-2/+2 * Issue #9979: Use PyUnicode_AsWideCharString() for _locale.strcoll()Victor Stinner2010-09-291-17/+4 * Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m...Daniel Stutzbach2010-08-241-4/+4 * locale.bindtextdomain(): use PyUnicode_FSConverter() to parse the filenameVictor Stinner2010-06-111-5/+17 * Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-66/+66 * Merged revisions 76625 via svnmerge fromAmaury Forgeot d'Arc2009-12-011-0/+8 * Only declare variable when it's used.Georg Brandl2009-10-271-0/+2 * Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-WindowsAntoine Pitrou2009-10-19