forked from qt-creator/qt-creator
Process: Rename processutils.{cpp,h} into processhelper.{cpp,h}
Make room for processutils.h which is going to contain the exported stuff. Change-Id: I87498c3a1d0708210aa970e2d45adaa0adb6e76a Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -131,10 +131,10 @@ add_qtc_library(Utils
|
|||||||
process.cpp process.h
|
process.cpp process.h
|
||||||
processenums.h
|
processenums.h
|
||||||
processhandle.cpp processhandle.h
|
processhandle.cpp processhandle.h
|
||||||
|
processhelper.cpp processhelper.h
|
||||||
processinfo.cpp processinfo.h
|
processinfo.cpp processinfo.h
|
||||||
processinterface.cpp processinterface.h
|
processinterface.cpp processinterface.h
|
||||||
processreaper.cpp processreaper.h
|
processreaper.cpp processreaper.h
|
||||||
processutils.cpp processutils.h
|
|
||||||
progressindicator.cpp progressindicator.h
|
progressindicator.cpp progressindicator.h
|
||||||
projectintropage.cpp projectintropage.h
|
projectintropage.cpp projectintropage.h
|
||||||
proxyaction.cpp proxyaction.h
|
proxyaction.cpp proxyaction.h
|
||||||
|
@@ -9,8 +9,8 @@
|
|||||||
#include "hostosinfo.h"
|
#include "hostosinfo.h"
|
||||||
#include "launcherinterface.h"
|
#include "launcherinterface.h"
|
||||||
#include "launchersocket.h"
|
#include "launchersocket.h"
|
||||||
|
#include "processhelper.h"
|
||||||
#include "processreaper.h"
|
#include "processreaper.h"
|
||||||
#include "processutils.h"
|
|
||||||
#include "stringutils.h"
|
#include "stringutils.h"
|
||||||
#include "terminalhooks.h"
|
#include "terminalhooks.h"
|
||||||
#include "threadutils.h"
|
#include "threadutils.h"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
// Copyright (C) 2021 The Qt Company Ltd.
|
// Copyright (C) 2021 The Qt Company Ltd.
|
||||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||||
|
|
||||||
#include "processutils.h"
|
#include "processhelper.h"
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
#ifdef QTCREATOR_PCH_H
|
#ifdef QTCREATOR_PCH_H
|
@@ -5,7 +5,6 @@
|
|||||||
|
|
||||||
#include "processenums.h"
|
#include "processenums.h"
|
||||||
|
|
||||||
#include <QIODevice>
|
|
||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
|
|
||||||
namespace Utils {
|
namespace Utils {
|
@@ -2,7 +2,8 @@
|
|||||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||||
|
|
||||||
#include "processreaper.h"
|
#include "processreaper.h"
|
||||||
#include "processutils.h"
|
|
||||||
|
#include "processhelper.h"
|
||||||
#include "qtcassert.h"
|
#include "qtcassert.h"
|
||||||
#include "threadutils.h"
|
#include "threadutils.h"
|
||||||
|
|
||||||
|
@@ -239,14 +239,14 @@ QtcLibrary {
|
|||||||
"processenums.h",
|
"processenums.h",
|
||||||
"processhandle.cpp",
|
"processhandle.cpp",
|
||||||
"processhandle.h",
|
"processhandle.h",
|
||||||
|
"processhelper.cpp",
|
||||||
|
"processhelper.h",
|
||||||
"processinfo.cpp",
|
"processinfo.cpp",
|
||||||
"processinfo.h",
|
"processinfo.h",
|
||||||
"processinterface.cpp",
|
"processinterface.cpp",
|
||||||
"processinterface.h",
|
"processinterface.h",
|
||||||
"processreaper.cpp",
|
"processreaper.cpp",
|
||||||
"processreaper.h",
|
"processreaper.h",
|
||||||
"processutils.cpp",
|
|
||||||
"processutils.h",
|
|
||||||
"progressindicator.cpp",
|
"progressindicator.cpp",
|
||||||
"progressindicator.h",
|
"progressindicator.h",
|
||||||
"projectintropage.cpp",
|
"projectintropage.cpp",
|
||||||
|
@@ -14,10 +14,10 @@ add_qtc_executable(qtcreator_processlauncher
|
|||||||
${UTILSDIR}/launcherpackets.cpp
|
${UTILSDIR}/launcherpackets.cpp
|
||||||
${UTILSDIR}/launcherpackets.h
|
${UTILSDIR}/launcherpackets.h
|
||||||
${UTILSDIR}/processenums.h
|
${UTILSDIR}/processenums.h
|
||||||
|
${UTILSDIR}/processhelper.cpp
|
||||||
|
${UTILSDIR}/processhelper.h
|
||||||
${UTILSDIR}/processreaper.cpp
|
${UTILSDIR}/processreaper.cpp
|
||||||
${UTILSDIR}/processreaper.h
|
${UTILSDIR}/processreaper.h
|
||||||
${UTILSDIR}/processutils.cpp
|
|
||||||
${UTILSDIR}/processutils.h
|
|
||||||
${UTILSDIR}/qtcassert.cpp
|
${UTILSDIR}/qtcassert.cpp
|
||||||
${UTILSDIR}/qtcassert.h
|
${UTILSDIR}/qtcassert.h
|
||||||
${UTILSDIR}/singleton.cpp
|
${UTILSDIR}/singleton.cpp
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
#include "launchersockethandler.h"
|
#include "launchersockethandler.h"
|
||||||
#include "launcherlogging.h"
|
#include "launcherlogging.h"
|
||||||
|
|
||||||
|
#include <utils/processhelper.h>
|
||||||
#include <utils/processreaper.h>
|
#include <utils/processreaper.h>
|
||||||
#include <utils/processutils.h>
|
|
||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include <QLocalSocket>
|
#include <QLocalSocket>
|
||||||
|
@@ -31,10 +31,10 @@ QtcTool {
|
|||||||
"launcherpackets.cpp",
|
"launcherpackets.cpp",
|
||||||
"launcherpackets.h",
|
"launcherpackets.h",
|
||||||
"processenums.h",
|
"processenums.h",
|
||||||
|
"processhelper.cpp",
|
||||||
|
"processhelper.h",
|
||||||
"processreaper.cpp",
|
"processreaper.cpp",
|
||||||
"processreaper.h",
|
"processreaper.h",
|
||||||
"processutils.cpp",
|
|
||||||
"processutils.h",
|
|
||||||
"qtcassert.cpp",
|
"qtcassert.cpp",
|
||||||
"qtcassert.h",
|
"qtcassert.h",
|
||||||
"singleton.cpp",
|
"singleton.cpp",
|
||||||
|
Reference in New Issue
Block a user