Files
qt-creator/src/plugins/cmakeprojectmanager/cmakeprocess.h
Artem Sokolovskii cd6e990de8 DAP: Add CMake debug to the debug panel
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>
2023-07-14 08:47:01 +00:00

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 &parameters, 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