| 2272 | } |
| 2273 | |
| 2274 | void cmLocalUnixMakefileGenerator3::AddImplicitDepends( |
| 2275 | cmGeneratorTarget const* tgt, std::string const& lang, |
| 2276 | std::string const& obj, std::string const& src, |
| 2277 | cmDependencyScannerKind scanner) |
| 2278 | { |
| 2279 | this->ImplicitDepends[tgt->GetName()][scanner][lang][obj].push_back(src); |
| 2280 | } |
| 2281 | |
| 2282 | void cmLocalUnixMakefileGenerator3::CreateCDCommand( |
| 2283 | std::vector<std::string>& commands, std::string const& tgtDir, |
no test coverage detected