| 1395 | } |
| 1396 | |
| 1397 | cmValue cmCPackGenerator::GetOption(std::string const& op) const |
| 1398 | { |
| 1399 | cmValue ret = this->MakefileMap->GetDefinition(op); |
| 1400 | if (!ret) { |
| 1401 | cmCPackLogger(cmCPackLog::LOG_DEBUG, |
| 1402 | "Warning, GetOption return NULL for: " << op << std::endl); |
| 1403 | } |
| 1404 | return ret; |
| 1405 | } |
| 1406 | |
| 1407 | std::vector<std::string> cmCPackGenerator::GetOptions() const |
| 1408 | { |
no test coverage detected