| 3739 | } |
| 3740 | |
| 3741 | void cmMakefile::AddCMakeDependFilesFromUser() |
| 3742 | { |
| 3743 | cmList deps; |
| 3744 | if (cmValue deps_str = this->GetProperty("CMAKE_CONFIGURE_DEPENDS")) { |
| 3745 | deps.assign(*deps_str); |
| 3746 | } |
| 3747 | for (auto const& dep : deps) { |
| 3748 | if (cmSystemTools::FileIsFullPath(dep)) { |
| 3749 | this->AddCMakeDependFile(dep); |
| 3750 | } else { |
| 3751 | std::string f = cmStrCat(this->GetCurrentSourceDirectory(), '/', dep); |
| 3752 | this->AddCMakeDependFile(f); |
| 3753 | } |
| 3754 | } |
| 3755 | } |
| 3756 | |
| 3757 | std::string cmMakefile::FormatListFileStack() const |
| 3758 | { |
no test coverage detected