| 1793 | } |
| 1794 | |
| 1795 | cmTarget* cmMakefile::FindImportedTarget(std::string const& name) const |
| 1796 | { |
| 1797 | auto const i = this->ImportedTargets.find(name); |
| 1798 | if (i != this->ImportedTargets.end()) { |
| 1799 | return i->second; |
| 1800 | } |
| 1801 | return nullptr; |
| 1802 | } |
| 1803 | |
| 1804 | std::vector<cmTarget*> cmMakefile::GetImportedTargets() const |
| 1805 | { |
no test coverage detected