CMake: Tealeafreader: Emit start signal before actually starting

This way we will get the start signal before the done signal if something
fails early.

Change-Id: I015017fdba16dd84f830b2e1fe2742eb0bec02a0
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tobias Hunger
2016-12-02 17:26:49 +01:00
parent 183cdbc91f
commit 4f8769d844

View File

@@ -497,8 +497,8 @@ void TeaLeafReader::startCMake(const QStringList &configurationArguments)
"CMake.Configure");
m_cmakeProcess->setCommand(m_parameters.cmakeExecutable.toString(), args);
m_cmakeProcess->start();
emit configurationStarted();
m_cmakeProcess->start();
}
void TeaLeafReader::cmakeFinished(int code, QProcess::ExitStatus status)