MCPcopy Create free account
hub / github.com/Kitware/CMake / QuotedPrintable

Method QuotedPrintable

Source/cmGlobalGenerator.cxx:84–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82
83namespace detail {
84std::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
100bool cmTarget::StrictTargetComparison::operator()(cmTarget const* t1,

Callers 1

BuildMethod · 0.80

Calls 1

cmStrCatFunction · 0.70

Tested by

no test coverage detected