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

Function allBuildDirs

plugins/cmake/cmakeutils.cpp:541–549  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

539}
540
541QStringList allBuildDirs(KDevelop::IProject* project)
542{
543 QStringList result;
544 int bdCount = buildDirCount(project);
545 result.reserve(bdCount);
546 for (int i = 0; i < bdCount; ++i)
547 result += buildDirGroup( project, i ).readEntry( Config::Specific::buildDirPathKey );
548 return result;
549}
550
551QString executeProcess(const QString& execName, const QStringList& args)
552{

Callers 4

checkForNeedingConfigureFunction · 0.85
resetMethod · 0.85
createBuildDirMethod · 0.85
testCTestSuiteMethod · 0.85

Calls 4

buildDirCountFunction · 0.85
buildDirGroupFunction · 0.85
readEntryMethod · 0.80
reserveMethod · 0.45

Tested by 1

testCTestSuiteMethod · 0.68