MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / cppDependencySourcePaths

Method cppDependencySourcePaths

src/attributes.cpp:3355–3364  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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_;

Callers 1

sourceCppContextFunction · 0.80

Calls 4

extensionMethod · 0.80
pathMethod · 0.80
sizeMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected