| 82 | } |
| 83 | |
| 84 | void cmSearchPath::AddEnvPath(std::string const& variable) |
| 85 | { |
| 86 | std::vector<std::string> expanded = |
| 87 | cmSystemTools::GetEnvPathNormalized(variable); |
| 88 | for (std::string const& p : expanded) { |
| 89 | this->AddPathInternal(p, ""); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void cmSearchPath::AddCMakePrefixPath(std::string const& variable) |
| 94 | { |
no test coverage detected