| 435 | } |
| 436 | |
| 437 | void 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 | } |
no test coverage detected