| 82 | |
| 83 | namespace detail { |
| 84 | std::string GeneratedMakeCommand::QuotedPrintable() const |
| 85 | { |
| 86 | std::string output; |
| 87 | char const* sep = ""; |
| 88 | int flags = 0; |
| 89 | #if !defined(_WIN32) |
| 90 | flags |= cmOutputConverter::Shell_Flag_IsUnix; |
| 91 | #endif |
| 92 | for (auto const& arg : this->PrimaryCommand) { |
| 93 | output += cmStrCat(sep, cmOutputConverter::EscapeForShell(arg, flags)); |
| 94 | sep = " "; |
| 95 | } |
| 96 | return output; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | bool cmTarget::StrictTargetComparison::operator()(cmTarget const* t1, |