| 199 | //! Set/Get a property of this target file |
| 200 | void SetProperty(std::string const& prop, cmValue value); |
| 201 | void SetProperty(std::string const& prop, std::nullptr_t) |
| 202 | { |
| 203 | this->SetProperty(prop, cmValue{ nullptr }); |
| 204 | } |
| 205 | void SetProperty(std::string const& prop, std::string const& value) |
| 206 | { |
| 207 | this->SetProperty(prop, cmValue(value)); |