forked from qt-creator/qt-creator
This commit introduces the capability to initiate CMake Debug sessions directly from the debug panel in the QtCretor. Change-Id: I00245e0e14aded378e881c4049cdc41dd1fbd00e Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io>
47 lines
925 B
C++
47 lines
925 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <utils/outputformatter.h>
|
|
|
|
#include <QElapsedTimer>
|
|
#include <QObject>
|
|
#include <QStringList>
|
|
|
|
#include <memory>
|
|
|
|
namespace Utils {
|
|
class ProcessResultData;
|
|
class Process;
|
|
}
|
|
|
|
namespace CMakeProjectManager::Internal {
|
|
|
|
class BuildDirParameters;
|
|
|
|
class CMakeProcess : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CMakeProcess();
|
|
~CMakeProcess();
|
|
|
|
void run(const BuildDirParameters ¶meters, const QStringList &arguments);
|
|
void stop();
|
|
|
|
signals:
|
|
void finished(int exitCode);
|
|
void stdOutReady(const QString &s);
|
|
|
|
private:
|
|
void handleProcessDone(const Utils::ProcessResultData &resultData);
|
|
|
|
std::unique_ptr<Utils::Process> m_process;
|
|
Utils::OutputFormatter m_parser;
|
|
QElapsedTimer m_elapsed;
|
|
};
|
|
|
|
} // CMakeProjectManager::Internal
|