| 419 | } |
| 420 | |
| 421 | bool cmGeneratorExpression::ForbidGeneratorExpressions( |
| 422 | cmGeneratorTarget const* target, std::string const& propertyName, |
| 423 | std::string const& propertyValue) |
| 424 | { |
| 425 | std::map<std::string, std::vector<std::string>> allowList; |
| 426 | std::string evaluatedValue; |
| 427 | return ForbidGeneratorExpressions(target, propertyName, propertyValue, |
| 428 | evaluatedValue, allowList); |
| 429 | } |
| 430 | |
| 431 | bool cmGeneratorExpression::ForbidGeneratorExpressions( |
| 432 | cmGeneratorTarget const* target, std::string const& propertyName, |
nothing calls this directly
no test coverage detected