| 749 | } |
| 750 | |
| 751 | bool cmGhsMultiTargetGenerator::DetermineIfIntegrityApp() |
| 752 | { |
| 753 | if (cmValue p = this->GeneratorTarget->GetProperty("ghs_integrity_app")) { |
| 754 | return p.IsOn(); |
| 755 | } |
| 756 | std::vector<cmSourceFile*> sources; |
| 757 | this->GeneratorTarget->GetSourceFiles(sources, this->ConfigName); |
| 758 | return std::any_of(sources.begin(), sources.end(), |
| 759 | [](cmSourceFile const* sf) -> bool { |
| 760 | return "int" == sf->GetExtension(); |
| 761 | }); |
| 762 | } |
| 763 | |
| 764 | bool cmGhsMultiTargetGenerator::ComputeCustomCommandOrder( |
| 765 | std::vector<cmSourceFile const*>& order) |
nothing calls this directly
no test coverage detected