| 396 | } |
| 397 | |
| 398 | std::string cmGeneratorExpression::Preprocess(cm::string_view input, |
| 399 | PreprocessContext context, |
| 400 | cm::string_view importPrefix) |
| 401 | { |
| 402 | if (context == StripAllGeneratorExpressions) { |
| 403 | return stripAllGeneratorExpressions(input); |
| 404 | } |
| 405 | if (context == BuildInterface || context == InstallInterface) { |
| 406 | return stripExportInterface(input, context, importPrefix); |
| 407 | } |
| 408 | |
| 409 | assert(false && |
| 410 | "cmGeneratorExpression::Preprocess called with invalid args"); |
| 411 | return std::string(); |
| 412 | } |
| 413 | |
| 414 | std::string cmGeneratorExpression::Collect( |
| 415 | std::string const& input, |
nothing calls this directly
no test coverage detected