MCPcopy Create free account
hub / github.com/Kitware/CMake / AddCMakeDependFilesFromUser

Method AddCMakeDependFilesFromUser

Source/cmMakefile.cxx:3741–3755  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3739}
3740
3741void 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
3757std::string cmMakefile::FormatListFileStack() const
3758{

Callers 1

ConfigureMethod · 0.95

Calls 4

GetPropertyMethod · 0.95
AddCMakeDependFileMethod · 0.95
assignMethod · 0.80
cmStrCatFunction · 0.70

Tested by

no test coverage detected