| 201 | } |
| 202 | |
| 203 | void ImportProject::ignoreOtherConfigs(const std::string &cfg) |
| 204 | { |
| 205 | for (auto it = fileSettings.cbegin(); it != fileSettings.cend();) { |
| 206 | if (it->cfg != cfg) |
| 207 | it = fileSettings.erase(it); |
| 208 | else |
| 209 | ++it; |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | void ImportProject::fsSetDefines(FileSettings& fs, std::string defs) |
| 214 | { |
no test coverage detected