| 5349 | } |
| 5350 | |
| 5351 | std::string cmGlobalXCodeGenerator::XCodeEscapePath(std::string const& p) |
| 5352 | { |
| 5353 | if (p.find_first_of(" []") != std::string::npos) { |
| 5354 | std::string t = cmStrCat('"', p, '"'); |
| 5355 | return t; |
| 5356 | } |
| 5357 | return p; |
| 5358 | } |
| 5359 | |
| 5360 | void cmGlobalXCodeGenerator::AppendDirectoryForConfig( |
| 5361 | std::string const& prefix, std::string const& config, |
no test coverage detected