| 917 | } |
| 918 | |
| 919 | bool Project::is_condition_name(const std::string &name) { |
| 920 | for (auto ch : name) { |
| 921 | if (!std::isalnum(ch) && ch != '-' && ch != '_') { |
| 922 | return false; |
| 923 | } |
| 924 | } |
| 925 | return true; |
| 926 | } |
| 927 | |
| 928 | bool is_root_path(const std::string &path) { |
| 929 | const auto toml_path = fs::path(path) / "cmake.toml"; |
nothing calls this directly
no outgoing calls
no test coverage detected