Skip to content
Snippets Groups Projects
Commit 66663090 authored by dt's avatar dt
Browse files

Add the directory we are refering too in the cmake wizards can't build

out of source page.
parent e92ad815
No related branches found
No related tags found
No related merge requests found
...@@ -213,9 +213,9 @@ InSourceBuildPage::InSourceBuildPage(CMakeOpenProjectWizard *cmakeWizard) ...@@ -213,9 +213,9 @@ InSourceBuildPage::InSourceBuildPage(CMakeOpenProjectWizard *cmakeWizard)
setLayout(new QVBoxLayout); setLayout(new QVBoxLayout);
QLabel *label = new QLabel(this); QLabel *label = new QLabel(this);
label->setWordWrap(true); label->setWordWrap(true);
label->setText(tr("Qt Creator has detected an in-source-build " label->setText(tr("Qt Creator has detected an <b>in-source-build in %1</b> "
"which prevents shadow builds. Qt Creator will not allow you to change the build directory. " "which prevents shadow builds. Qt Creator will not allow you to change the build directory. "
"If you want a shadow build, clean your source directory and re-open the project.")); "If you want a shadow build, clean your source directory and re-open the project.").arg(m_cmakeWizard->buildDirectory()));
layout()->addWidget(label); layout()->addWidget(label);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment