| 2384 | } |
| 2385 | |
| 2386 | void |
| 2387 | Project::getEnvironmentVariables(std::map<std::string, std::string>& env) const |
| 2388 | { |
| 2389 | std::list<std::vector<std::string> > table; |
| 2390 | |
| 2391 | _imp->envVars->getTable(&table); |
| 2392 | for (std::list<std::vector<std::string> >::iterator it = table.begin(); it != table.end(); ++it) { |
| 2393 | assert(it->size() == 2); |
| 2394 | env[(*it)[0]] = (*it)[1]; |
| 2395 | } |
| 2396 | } |
| 2397 | |
| 2398 | void |
| 2399 | Project::expandVariable(const std::map<std::string, std::string>& env, |
no test coverage detected