diff options
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r-- | Source/cmTest.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx index 11c6a8c..0a59fe0 100644 --- a/Source/cmTest.cxx +++ b/Source/cmTest.cxx @@ -85,6 +85,16 @@ void cmTest::SetProperty(const char* prop, const char* value) } //---------------------------------------------------------------------------- +void cmTest::AppendProperty(const char* prop, const char* value) +{ + if (!prop) + { + return; + } + this->Properties.AppendProperty(prop, value, cmProperty::TEST); +} + +//---------------------------------------------------------------------------- void cmTest::SetMakefile(cmMakefile* mf) { // Set our makefile. |