diff options
author | Brad King <brad.king@kitware.com> | 2008-01-17 23:13:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-17 23:13:55 (GMT) |
commit | caca9b80652c7c36ed1e39e1faeec64e3397f632 (patch) | |
tree | ed463885ac3f417fdc6838367019615fafef4108 /Source/cmProperty.h | |
parent | 9e8a1c639a92a1c2e37f0beefb62204930e7e61e (diff) | |
download | CMake-caca9b80652c7c36ed1e39e1faeec64e3397f632.zip CMake-caca9b80652c7c36ed1e39e1faeec64e3397f632.tar.gz CMake-caca9b80652c7c36ed1e39e1faeec64e3397f632.tar.bz2 |
ENH: Add AppendProperty methods for use by C++ code in CMake. Simplify implementation of SET_PROPERTY command by using them.
Diffstat (limited to 'Source/cmProperty.h')
-rw-r--r-- | Source/cmProperty.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmProperty.h b/Source/cmProperty.h index fc8e277..7d238b6 100644 --- a/Source/cmProperty.h +++ b/Source/cmProperty.h @@ -28,6 +28,9 @@ public: // set this property void Set(const char *name, const char *value); + // append to this property + void Append(const char *name, const char *value); + // get the value const char *GetValue() const; |