diff options
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 981ba3f..6f90024 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -1346,6 +1346,16 @@ void cmTarget::SetProperty(const char* prop, const char* value) } //---------------------------------------------------------------------------- +void cmTarget::AppendProperty(const char* prop, const char* value) +{ + if (!prop) + { + return; + } + this->Properties.AppendProperty(prop, value, cmProperty::TARGET); +} + +//---------------------------------------------------------------------------- void cmTarget::MarkAsImported() { this->IsImportedTarget = true; |