Fix build

Change-Id: Ide8c7e604ee8cdf910bd22e79d3d8d62a64a3a56
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Christian Kandeler
2022-10-12 18:15:58 +02:00
parent b997d095a1
commit 33a8854b21
3 changed files with 3 additions and 2 deletions

View File

@@ -3,8 +3,8 @@
#include "processprogress.h" #include "processprogress.h"
#include "coreplugintr.h"
#include "progressmanager.h" #include "progressmanager.h"
#include "../coreplugintr.h"
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <utils/qtcprocess.h> #include <utils/qtcprocess.h>

View File

@@ -26,6 +26,7 @@ namespace Internal {
static Q_LOGGING_CATEGORY(mesonProcessLog, "qtc.meson.buildsystem", QtWarningMsg); static Q_LOGGING_CATEGORY(mesonProcessLog, "qtc.meson.buildsystem", QtWarningMsg);
MesonProcess::MesonProcess() = default;
MesonProcess::~MesonProcess() = default; MesonProcess::~MesonProcess() = default;
bool MesonProcess::run(const Command &command, bool MesonProcess::run(const Command &command,

View File

@@ -24,7 +24,7 @@ class MesonProcess final : public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:
MesonProcess() = default; MesonProcess();
~MesonProcess(); ~MesonProcess();
bool run(const Command &command, const Utils::Environment &env, bool run(const Command &command, const Utils::Environment &env,
const QString &projectName, bool captureStdo = false); const QString &projectName, bool captureStdo = false);