packaging: Initial packaging
[platform/upstream/cmake.git] / Source / cmProperty.cxx
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #include "cmProperty.h"
13 #include "cmSystemTools.h"
14
15 void cmProperty::Set(const char *name, const char *value)
16 {
17   this->Name = name;
18   this->Value = value;
19   this->ValueHasBeenSet = true;
20 }
21
22 void cmProperty::Append(const char *name, const char *value, bool asString)
23 {
24   this->Name = name;
25   if(!this->Value.empty() && *value && !asString)
26     {
27     this->Value += ";";
28     }
29   this->Value += value;
30   this->ValueHasBeenSet = true;
31 }
32
33 const char *cmProperty::GetValue() const
34 {
35   if (this->ValueHasBeenSet)
36     {
37     return this->Value.c_str();
38     }
39   return 0;
40 }