| 1016 | } |
| 1017 | |
| 1018 | std::string cmSystemTools::PrintSingleCommand( |
| 1019 | std::vector<std::string> const& command) |
| 1020 | { |
| 1021 | if (command.empty()) { |
| 1022 | return std::string(); |
| 1023 | } |
| 1024 | |
| 1025 | return cmWrap('"', command, '"', " "); |
| 1026 | } |
| 1027 | |
| 1028 | bool cmSystemTools::DoesFileExistWithExtensions( |
| 1029 | std::string const& name, std::vector<std::string> const& headerExts) |