| 253 | } |
| 254 | |
| 255 | static bool checkArgumentsPreconditions(ParsedArguments const& parsedArguments, |
| 256 | std::string& errorMsg) |
| 257 | { |
| 258 | return checkSingleParameterArgumentPreconditions( |
| 259 | kPrefixOptionName, parsedArguments, errorMsg) && |
| 260 | checkSingleParameterArgumentPreconditions(kTreeOptionName, parsedArguments, |
| 261 | errorMsg) && |
| 262 | checkSingleParameterArgumentPreconditions(kRegexOptionName, |
| 263 | parsedArguments, errorMsg); |
| 264 | } |
| 265 | |
| 266 | static bool processTree(cmMakefile& mf, ParsedArguments& parsedArguments, |
| 267 | std::string& errorMsg) |
no test coverage detected
searching dependent graphs…