aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakeprocess.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeprocess.h')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakeprocess.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeprocess.h b/src/plugins/cmakeprojectmanager/cmakeprocess.h
index d71a56629f..c63f54952a 100644
--- a/src/plugins/cmakeprojectmanager/cmakeprocess.h
+++ b/src/plugins/cmakeprojectmanager/cmakeprocess.h
@@ -27,12 +27,13 @@
#include "builddirparameters.h"
-#include <projectexplorer/ioutputparser.h>
-
+#include <utils/outputformatter.h>
#include <utils/qtcprocess.h>
#include <QElapsedTimer>
#include <QFutureInterface>
+#include <QObject>
+#include <QStringList>
#include <QTimer>
#include <memory>
@@ -70,7 +71,7 @@ private:
void checkForCancelled();
std::unique_ptr<Utils::QtcProcess> m_process;
- std::unique_ptr<ProjectExplorer::IOutputParser> m_parser;
+ Utils::OutputFormatter m_parser;
std::unique_ptr<QFutureInterface<void>> m_future;
bool m_processWasCanceled = false;
QTimer m_cancelTimer;