| 123 | } |
| 124 | |
| 125 | void PathResolutionResult::mergeWith(const PathResolutionResult& rhs) |
| 126 | { |
| 127 | mergePaths(paths, rhs.paths); |
| 128 | mergePaths(frameworkDirectories, rhs.frameworkDirectories); |
| 129 | includePathDependency += rhs.includePathDependency; |
| 130 | for (auto it = rhs.defines.begin(), end = rhs.defines.end(); it != end; ++it) { |
| 131 | defines.insert(it.key(), it.value()); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | PathResolutionResult::PathResolutionResult(bool success, const QString& errorMessage, const QString& longErrorMessage) |
| 136 | : success(success) |
no test coverage detected