forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.5'
Change-Id: Iceaa4ca40b5318744bde8a76c6d3ccca08df71bb
This commit is contained in:
@@ -265,6 +265,8 @@ public:
|
||||
return m_qbsCleanStep->keepGoing();
|
||||
}
|
||||
|
||||
bool forceProbeExecution() const { return m_qbsBuildStep && m_qbsBuildStep->forceProbes(); }
|
||||
|
||||
bool showCommandLines() const {
|
||||
return m_qbsBuildStep ? m_qbsBuildStep->showCommandLines() : false;
|
||||
}
|
||||
@@ -328,6 +330,8 @@ QString QbsBuildConfiguration::equivalentCommandLine(const BuildStep *buildStep)
|
||||
Utils::QtcProcess::addArg(&commandLine, QLatin1String("--dry-run"));
|
||||
if (stepProxy.keepGoing())
|
||||
Utils::QtcProcess::addArg(&commandLine, QLatin1String("--keep-going"));
|
||||
if (stepProxy.forceProbeExecution())
|
||||
Utils::QtcProcess::addArg(&commandLine, QLatin1String("--force-probe-execution"));
|
||||
if (stepProxy.showCommandLines())
|
||||
Utils::QtcProcess::addArgs(&commandLine, QStringList({"--command-echo-mode",
|
||||
"command-line"}));
|
||||
|
||||
@@ -32,6 +32,8 @@ namespace Internal {
|
||||
|
||||
class QbsKitInformation final : public ProjectExplorer::KitInformation
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
static QString displayName();
|
||||
static QString representation(const ProjectExplorer::Kit *kit);
|
||||
|
||||
Reference in New Issue
Block a user