// 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 #include #include #include #include #include QT_BEGIN_NAMESPACE template class QFutureWatcher; QT_END_NAMESPACE namespace Utils { class ProcessResultData; class QtcProcess; } namespace CMakeProjectManager { namespace Internal { class BuildDirParameters; class CMakeProcess : public QObject { Q_OBJECT public: CMakeProcess(); ~CMakeProcess(); void run(const BuildDirParameters ¶meters, 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 m_process; Utils::OutputFormatter m_parser; QFutureInterface m_futureInterface; std::unique_ptr> m_futureWatcher; QElapsedTimer m_elapsed; int m_lastExitCode = 0; }; } // namespace Internal } // namespace CMakeProjectManager