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

out of source page.
This commit is contained in:
dt
2009-08-13 17:36:56 +02:00
parent e92ad815d8
commit 66663090e4

View File

@@ -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);
} }