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

Method OutputFlagMap

Source/cmVisualStudioGeneratorOptions.cxx:437–453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

435}
436
437void cmVisualStudioGeneratorOptions::OutputFlagMap(std::ostream& fout,
438 int indent)
439{
440 for (auto const& m : this->FlagMap) {
441 std::ostringstream oss;
442 char const* sep = "";
443 for (std::string i : m.second) {
444 if (!this->LocalGenerator->IsVFProj()) {
445 cmVS10EscapeForMSBuild(i);
446 }
447 oss << sep << i;
448 sep = ";";
449 }
450
451 this->OutputFlag(fout, indent, m.first, oss.str());
452 }
453}

Callers 3

WriteConfigurationMethod · 0.45
OutputBuildToolMethod · 0.45
WriteGroupMethod · 0.45

Calls 4

cmVS10EscapeForMSBuildFunction · 0.85
IsVFProjMethod · 0.80
strMethod · 0.80
OutputFlagMethod · 0.45

Tested by

no test coverage detected