| 848 | } |
| 849 | |
| 850 | size_t cmGlobalUnixMakefileGenerator3::CountProgressMarksInAll( |
| 851 | cmLocalGenerator const& lg) |
| 852 | { |
| 853 | size_t count = 0; |
| 854 | std::set<cmGeneratorTarget const*> emitted; |
| 855 | for (cmGeneratorTarget const* target : |
| 856 | this->DirectoryTargetsMap[lg.GetStateSnapshot()]) { |
| 857 | if (!this->IsExcluded(&lg, target)) { |
| 858 | count += this->CountProgressMarksInTarget(target, emitted); |
| 859 | } |
| 860 | } |
| 861 | return count; |
| 862 | } |
| 863 | |
| 864 | void cmGlobalUnixMakefileGenerator3::RecordTargetProgress( |
| 865 | cmMakefileTargetGenerator* tg) |
no test coverage detected