| 38 | //! Set/Get a property of this source file |
| 39 | void SetProperty(std::string const& prop, cmValue value); |
| 40 | void SetProperty(std::string const& prop, std::nullptr_t) |
| 41 | { |
| 42 | this->SetProperty(prop, cmValue{ nullptr }); |
| 43 | } |
| 44 | void SetProperty(std::string const& prop, std::string const& value) |
| 45 | { |
| 46 | this->SetProperty(prop, cmValue(value)); |