| 921 | } |
| 922 | |
| 923 | void cmLocalUnixMakefileGenerator3::AppendRuleDepend( |
| 924 | std::vector<std::string>& depends, char const* ruleFileName) |
| 925 | { |
| 926 | // Add a dependency on the rule file itself unless an option to skip |
| 927 | // it is specifically enabled by the user or project. |
| 928 | cmValue nodep = this->Makefile->GetDefinition("CMAKE_SKIP_RULE_DEPENDENCY"); |
| 929 | if (nodep.IsOff()) { |
| 930 | depends.emplace_back(ruleFileName); |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | void cmLocalUnixMakefileGenerator3::AppendRuleDepends( |
| 935 | std::vector<std::string>& depends, std::vector<std::string> const& ruleFiles) |
no test coverage detected