| 57 | } |
| 58 | |
| 59 | void cmQtAutoGenerator::Logger::Info(GenT genType, |
| 60 | cm::string_view message) const |
| 61 | { |
| 62 | std::string msg = cmStrCat(GeneratorName(genType), ": ", message, |
| 63 | cmHasSuffix(message, '\n') ? "" : "\n"); |
| 64 | { |
| 65 | std::lock_guard<std::mutex> lock(this->Mutex_); |
| 66 | cmSystemTools::Stdout(msg); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | void cmQtAutoGenerator::Logger::Warning(GenT genType, |
| 71 | cm::string_view message) const |