| 95 | } |
| 96 | |
| 97 | static void AddEnvPath(std::vector<std::string>& paths, std::string const& var, |
| 98 | std::string const& suffix) |
| 99 | { |
| 100 | std::string value; |
| 101 | if (cmSystemTools::GetEnv(var, value)) { |
| 102 | paths.push_back(value + suffix); |
| 103 | } |
| 104 | } |
| 105 | #endif |
| 106 | |
| 107 | static cmsys::RegularExpression TransformCompile(std::string const& str) |
no test coverage detected
searching dependent graphs…