| 126 | } // namespace |
| 127 | |
| 128 | bool cmBuildCommand(std::vector<std::string> const& args, |
| 129 | cmExecutionStatus& status) |
| 130 | { |
| 131 | // Support the legacy signature of the command: |
| 132 | if (args.size() == 2) { |
| 133 | return TwoArgsSignature(args, status); |
| 134 | } |
| 135 | |
| 136 | return MainSignature(args, status); |
| 137 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…