| 1203 | } |
| 1204 | |
| 1205 | void cmTarget::AddUtility(std::string const& name, bool cross, |
| 1206 | cmMakefile const* mf) |
| 1207 | { |
| 1208 | this->impl->Utilities.insert(BT<std::pair<std::string, bool>>( |
| 1209 | { name, cross }, mf ? mf->GetBacktrace() : cmListFileBacktrace())); |
| 1210 | } |
| 1211 | |
| 1212 | void cmTarget::AddUtility(BT<std::pair<std::string, bool>> util) |
| 1213 | { |
no test coverage detected