Files
qt-creator/src/plugins/cmakeprojectmanager/cmakeprocess.h
hjk ab4c9b9679 CMake: Move to Tr::tr
Change-Id: I169da93b5184351cb915d4c198fd33318fcfe06f
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
2022-09-30 06:56:21 +00:00

58 lines
1.2 KiB
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/outputformatter.h>
#include <QElapsedTimer>
#include <QFutureInterface>
#include <QObject>
#include <QStringList>
#include <memory>
QT_BEGIN_NAMESPACE
template<class T>
class QFutureWatcher;
QT_END_NAMESPACE
namespace Utils {
class ProcessResultData;
class QtcProcess;
}
namespace CMakeProjectManager::Internal {
class BuildDirParameters;
class CMakeProcess : public QObject
{
Q_OBJECT
public:
CMakeProcess();
~CMakeProcess();
void run(const BuildDirParameters &parameters, const QStringList &arguments);
void stop();
int lastExitCode() const { return m_lastExitCode; }
signals:
void started();
void finished();
private:
void handleProcessDone(const Utils::ProcessResultData &resultData);
std::unique_ptr<Utils::QtcProcess> m_process;
Utils::OutputFormatter m_parser;
QFutureInterface<void> m_futureInterface;
std::unique_ptr<QFutureWatcher<void>> m_futureWatcher;
QElapsedTimer m_elapsed;
int m_lastExitCode = 0;
};
} // CMakeProjectManager::Internal