| 1048 | } |
| 1049 | |
| 1050 | bool cmCPackGenerator::ReadListFile(char const* moduleName) |
| 1051 | { |
| 1052 | bool retval; |
| 1053 | std::string fullPath = this->MakefileMap->GetModulesFile(moduleName); |
| 1054 | retval = this->MakefileMap->ReadListFile(fullPath); |
| 1055 | // include FATAL_ERROR and ERROR in the return status |
| 1056 | retval = retval && (!cmSystemTools::GetErrorOccurredFlag()); |
| 1057 | return retval; |
| 1058 | } |
| 1059 | |
| 1060 | template <typename ValueType> |
| 1061 | void cmCPackGenerator::StoreOptionIfNotSet(std::string const& op, |