diff options
author | Brad King <brad.king@kitware.com> | 2011-07-26 18:57:32 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-07-26 18:57:32 (GMT) |
commit | 119dce33d3b51e01507e917ca53f1dd08a7a4c23 (patch) | |
tree | 33c28994743cc860389aecf21ed9f36f7aa9f3f9 /Source/cmTest.h | |
parent | dc96b975c52f79ba332b15bc33048ae01108e0ab (diff) | |
parent | 9dbba1b46421d4c45f7090f4573df6e73afccf69 (diff) | |
download | CMake-119dce33d3b51e01507e917ca53f1dd08a7a4c23.zip CMake-119dce33d3b51e01507e917ca53f1dd08a7a4c23.tar.gz CMake-119dce33d3b51e01507e917ca53f1dd08a7a4c23.tar.bz2 |
Merge topic 'SetPropertyAppendString'
9dbba1b Fix #12342: Add APPEND_STRING option to set_property()
Diffstat (limited to 'Source/cmTest.h')
-rw-r--r-- | Source/cmTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTest.h b/Source/cmTest.h index e27a24e..6223a01 100644 --- a/Source/cmTest.h +++ b/Source/cmTest.h @@ -47,7 +47,7 @@ public: ///! Set/Get a property of this source file void SetProperty(const char *prop, const char *value); - void AppendProperty(const char* prop, const char* value); + void AppendProperty(const char* prop, const char* value,bool asString=false); const char *GetProperty(const char *prop) const; bool GetPropertyAsBool(const char *prop) const; cmPropertyMap &GetProperties() { return this->Properties; }; |