MCPcopy Create free account
hub / github.com/KDE/kdevelop / populateTargetsRecursively

Function populateTargetsRecursively

plugins/cmake/cmakemanager.cpp:484–492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482}
483
484static void populateTargetsRecursively(ProjectFolderItem* folder, const QHash<Path, QList<CMakeTarget>>& targets)
485{
486 populateTargets(folder, targets);
487 const auto children = folder->children();
488 for (auto* const child : children) {
489 if (auto* const folder = child->folder())
490 populateTargetsRecursively(folder, targets);
491 }
492}
493
494static void cleanupTestSuites(const QVector<CTestSuite*>& testSuites, const QVector<CTestFindJob*>& testSuiteJobs)
495{

Callers 1

integrateDataMethod · 0.85

Calls 3

populateTargetsFunction · 0.85
folderMethod · 0.80
childrenMethod · 0.45

Tested by

no test coverage detected