| 31 | namespace { |
| 32 | |
| 33 | bool FatalError(cmExecutionStatus& status, std::string const& error) |
| 34 | { |
| 35 | status.SetError(error); |
| 36 | cmSystemTools::SetFatalErrorOccurred(); |
| 37 | return false; |
| 38 | } |
| 39 | |
| 40 | std::array<cm::static_string_view, 14> InvalidCommands{ |
| 41 | { // clang-format off |
no test coverage detected
searching dependent graphs…