| 3353 | } |
| 3354 | |
| 3355 | const std::vector<std::string> cppDependencySourcePaths() { |
| 3356 | std::vector<std::string> dependencies; |
| 3357 | for (size_t i = 0; i<sourceDependencies_.size(); ++i) { |
| 3358 | FileInfo dep = sourceDependencies_[i]; |
| 3359 | if (dep.extension() == ".cc" || dep.extension() == ".cpp") { |
| 3360 | dependencies.push_back(dep.path()); // #nocov |
| 3361 | } |
| 3362 | } |
| 3363 | return dependencies; |
| 3364 | } |
| 3365 | |
| 3366 | std::string buildDirectory() const { |
| 3367 | return buildDirectory_; |
no test coverage detected