| 36 | } |
| 37 | |
| 38 | std::string JoinList(std::vector<std::string> const& arg, bool escape) |
| 39 | { |
| 40 | return escape ? cmList::to_string(cmMakeRange(arg).transform(EscapeArg)) |
| 41 | : cmList::to_string(cmMakeRange(arg)); |
| 42 | } |
| 43 | |
| 44 | using options_map = std::map<std::string, bool>; |
| 45 | using single_map = std::map<std::string, std::string>; |
no test coverage detected
searching dependent graphs…