GUI: Fixed problem with absolute build dir
This commit is contained in:
parent
d3c9d06aa4
commit
09cdead6cb
|
@ -847,8 +847,12 @@ Settings MainWindow::getCppcheckSettings()
|
||||||
|
|
||||||
const QString &buildDir = mProjectFile->getBuildDir();
|
const QString &buildDir = mProjectFile->getBuildDir();
|
||||||
if (!buildDir.isEmpty()) {
|
if (!buildDir.isEmpty()) {
|
||||||
QString prjpath = QFileInfo(mProjectFile->getFilename()).absolutePath();
|
if (QDir(buildDir).isAbsolute()) {
|
||||||
result.buildDir = (prjpath + '/' + buildDir).toStdString();
|
result.buildDir = buildDir.toStdString();
|
||||||
|
} else {
|
||||||
|
QString prjpath = QFileInfo(mProjectFile->getFilename()).absolutePath();
|
||||||
|
result.buildDir = (prjpath + '/' + buildDir).toStdString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue