| 1598 | } |
| 1599 | |
| 1600 | void cmMakefileTargetGenerator::WriteObjectDependRules( |
| 1601 | cmSourceFile const& source, std::vector<std::string>& depends) |
| 1602 | { |
| 1603 | // Create the list of dependencies known at cmake time. These are |
| 1604 | // shared between the object file and dependency scanning rule. |
| 1605 | depends.push_back(source.GetFullPath()); |
| 1606 | if (cmValue objectDeps = source.GetProperty("OBJECT_DEPENDS")) { |
| 1607 | cmExpandList(*objectDeps, depends); |
| 1608 | } |
| 1609 | } |
| 1610 | |
| 1611 | void cmMakefileTargetGenerator::WriteDeviceLinkRule( |
| 1612 | std::vector<std::string>& commands, std::string const& output) |
no test coverage detected