| 59 | } |
| 60 | |
| 61 | static std::string space_error_check(const std::string &str) { |
| 62 | auto pos = str.find_last_of(' '); |
| 63 | if (pos != std::string::npos) |
| 64 | return quoted(str) + " <------ !space(s)"; |
| 65 | else |
| 66 | return quoted(str); |
| 67 | } |
| 68 | |
| 69 | static std::vector<fs::path> expand_cmake_path(const fs::path &source_path, const fs::path &toml_dir, bool is_root_project) { |
| 70 | auto is_subdir = [](fs::path p, const fs::path &root) { |
no test coverage detected