| 1059 | |
| 1060 | template <typename ValueType> |
| 1061 | void cmCPackGenerator::StoreOptionIfNotSet(std::string const& op, |
| 1062 | ValueType value) |
| 1063 | { |
| 1064 | cmValue def = this->MakefileMap->GetDefinition(op); |
| 1065 | if (cmNonempty(def)) { |
| 1066 | return; |
| 1067 | } |
| 1068 | this->StoreOption(op, value); |
| 1069 | } |
| 1070 | |
| 1071 | void cmCPackGenerator::SetOptionIfNotSet(std::string const& op, |
| 1072 | char const* value) |
no test coverage detected