| 2240 | } |
| 2241 | |
| 2242 | void |
| 2243 | Project::getEnvironmentVariables(std::map<std::string, std::string>& env) const |
| 2244 | { |
| 2245 | std::list<std::vector<std::string> > table; |
| 2246 | |
| 2247 | _imp->envVars->getTable(&table); |
| 2248 | for (std::list<std::vector<std::string> >::iterator it = table.begin(); it != table.end(); ++it) { |
| 2249 | assert(it->size() == 2); |
| 2250 | env[(*it)[0]] = (*it)[1]; |
| 2251 | } |
| 2252 | } |
| 2253 | |
| 2254 | void |
| 2255 | Project::expandVariable(const std::map<std::string, std::string>& env, |
no test coverage detected