mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 14:40:26 -06:00
ENH: Added cmSystemTools::GlobDirs function to allow wildcards in paths (like /foo/bar/*).
This commit is contained in:
@@ -91,7 +91,8 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string>& args)
|
||||
else
|
||||
{
|
||||
cmSystemTools::ExpandRegistryValues(args[j]);
|
||||
path.push_back(args[j]);
|
||||
// Glob the entry in case of wildcards.
|
||||
cmSystemTools::GlobDirs(args[j].c_str(), path);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -108,7 +109,9 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string>& args)
|
||||
std::string exp = args[j];
|
||||
m_Makefile->ExpandVariablesInString(exp);
|
||||
cmSystemTools::ExpandRegistryValues(exp);
|
||||
path.push_back(exp);
|
||||
|
||||
// Glob the entry in case of wildcards.
|
||||
cmSystemTools::GlobDirs(exp.c_str(), path);
|
||||
}
|
||||
}
|
||||
for(std::vector<std::string>::iterator i = names.begin();
|
||||
|
||||
Reference in New Issue
Block a user