diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2021-08-15 14:04:47 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2021-08-25 08:09:02 (GMT) |
commit | 6dfa581babfb051461341ca92e0463481799361f (patch) | |
tree | b78a81eb4e7e170820e11d324e8206045c37d29f /Source/cmTest.cxx | |
parent | 71bf838cf35fabc27ff009f2901eeffc786fa753 (diff) | |
download | CMake-6dfa581babfb051461341ca92e0463481799361f.zip CMake-6dfa581babfb051461341ca92e0463481799361f.tar.gz CMake-6dfa581babfb051461341ca92e0463481799361f.tar.bz2 |
Enhancement: SetProperty accept cmProp or std::string
Methods SetProperty of classes cmPropertyMap, cmStateDirectory
and cmMakefile accept now cmProp or std::string as argument.
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r-- | Source/cmTest.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx index 5bc10c2..9d25ce9 100644 --- a/Source/cmTest.cxx +++ b/Source/cmTest.cxx @@ -57,6 +57,10 @@ void cmTest::SetProperty(const std::string& prop, const char* value) { this->Properties.SetProperty(prop, value); } +void cmTest::SetProperty(const std::string& prop, cmProp value) +{ + this->Properties.SetProperty(prop, value); +} void cmTest::AppendProperty(const std::string& prop, const std::string& value, bool asString) |