aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/abstractcommandexecutor.h
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@theqtcompany.com>2014-11-05 16:50:37 +0100
committerJoerg Bornemann <joerg.bornemann@theqtcompany.com>2014-11-07 11:28:35 +0100
commitbd3764d42ed06769ce854f974c6e448ea3263e87 (patch)
treeee0dda2d66a33f58ca912ef7c89922c444622500 /src/lib/corelib/buildgraph/abstractcommandexecutor.h
parent842ae64080f33366715c390a5f3b338ea8dd5ff2 (diff)
add option to show command lines in build output
With "qbs build --show-command-lines" one can suppress command descriptions and show actual command lines instead. Change-Id: I98328254bad7fb85036abb0525c5ad7e734110c7 Task-number: QBS-615 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'src/lib/corelib/buildgraph/abstractcommandexecutor.h')
-rw-r--r--src/lib/corelib/buildgraph/abstractcommandexecutor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/corelib/buildgraph/abstractcommandexecutor.h b/src/lib/corelib/buildgraph/abstractcommandexecutor.h
index 7423fcedd..ba8a952e5 100644
--- a/src/lib/corelib/buildgraph/abstractcommandexecutor.h
+++ b/src/lib/corelib/buildgraph/abstractcommandexecutor.h
@@ -63,6 +63,7 @@ signals:
void finished(const qbs::ErrorInfo &err = ErrorInfo()); // !hasError() <=> command successful
protected:
+ virtual void doReportCommandDescription();
const AbstractCommand *command() const { return m_command; }
Transformer *transformer() const { return m_transformer; }
ScriptEngine *scriptEngine() const { return m_mainThreadScriptEngine; }