| 3906 | } |
| 3907 | |
| 3908 | bool cmMakefile::IsAlias(std::string const& name) const |
| 3909 | { |
| 3910 | if (cm::contains(this->AliasTargets, name)) { |
| 3911 | return true; |
| 3912 | } |
| 3913 | return this->GetGlobalGenerator()->IsAlias(name); |
| 3914 | } |
| 3915 | |
| 3916 | bool cmMakefile::EnforceUniqueName(std::string const& name, std::string& msg, |
| 3917 | bool isCustom) const |
no test coverage detected