| 814 | } |
| 815 | |
| 816 | bool cmGlobalVisualStudioGenerator::IsDependedOn( |
| 817 | TargetDependSet const& projectTargets, cmGeneratorTarget const* gtIn) const |
| 818 | { |
| 819 | return std::any_of(projectTargets.begin(), projectTargets.end(), |
| 820 | [this, gtIn](cmTargetDepend const& l) { |
| 821 | TargetDependSet const& tgtdeps = |
| 822 | this->GetTargetDirectDepends(l); |
| 823 | return tgtdeps.count(gtIn); |
| 824 | }); |
| 825 | } |
| 826 | |
| 827 | std::set<std::string> cmGlobalVisualStudioGenerator::IsPartOfDefaultBuild( |
| 828 | std::vector<std::string> const& configs, |
no test coverage detected