| 876 | } |
| 877 | |
| 878 | std::string cmLocalGenerator::GetRuleLauncher(cmGeneratorTarget* target, |
| 879 | std::string const& prop, |
| 880 | std::string const& config) |
| 881 | { |
| 882 | cmValue value = this->Makefile->GetProperty(prop); |
| 883 | if (target) { |
| 884 | value = target->GetProperty(prop); |
| 885 | } |
| 886 | if (value) { |
| 887 | return cmGeneratorExpression::Evaluate(*value, this, config, target); |
| 888 | } |
| 889 | return ""; |
| 890 | } |
| 891 | |
| 892 | std::string cmLocalGenerator::ConvertToIncludeReference( |
| 893 | std::string const& path, OutputFormat format) |
no test coverage detected