| 618 | return path; |
| 619 | } |
| 620 | virtual std::string GetConfigDirectory(std::string const& config) const |
| 621 | { |
| 622 | if (!this->IsMultiConfig() || config.empty()) { |
| 623 | return {}; |
| 624 | } |
| 625 | return cmStrCat('/', config); |
| 626 | } |
| 627 | |
| 628 | static std::string EscapeJSON(std::string const& s); |
| 629 |
no test coverage detected