Clang: Rename library clangbackendipc to clangsupport

We already share same classes there which has nothing to do with IPC and
I want to more for sharing. So we should use a name which fits better.

Change-Id: Idfb12b6de714206117b92634ad719c6a0e290e78
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Marco Bubke
2017-08-24 12:28:01 +02:00
parent 46ba29b8c0
commit 7c0331ab93
229 changed files with 143 additions and 143 deletions

View File

@@ -29,7 +29,7 @@
#include <texteditor/codeassist/genericproposalmodel.h>
#include <clangbackendipc/clangbackendipc_global.h>
#include <clangsupport/clangsupport_global.h>
namespace ClangCodeModel {
namespace Internal {

View File

@@ -48,9 +48,9 @@
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
#include <clangbackendipc/clangcodemodelservermessages.h>
#include <clangbackendipc/clangcodemodelclientmessages.h>
#include <clangbackendipc/filecontainer.h>
#include <clangsupport/clangcodemodelservermessages.h>
#include <clangsupport/clangcodemodelclientmessages.h>
#include <clangsupport/filecontainer.h>
#include <cplusplus/Icons.h>

View File

@@ -29,10 +29,10 @@
#include <cpptools/cppcursorinfo.h>
#include <cpptools/cppsymbolinfo.h>
#include <clangbackendipc/clangcodemodelconnectionclient.h>
#include <clangbackendipc/filecontainer.h>
#include <clangbackendipc/clangcodemodelclientinterface.h>
#include <clangbackendipc/projectpartcontainer.h>
#include <clangsupport/clangcodemodelconnectionclient.h>
#include <clangsupport/filecontainer.h>
#include <clangsupport/clangcodemodelclientinterface.h>
#include <clangsupport/projectpartcontainer.h>
#include <QFuture>
#include <QObject>

View File

@@ -10,7 +10,7 @@ QtcPlugin {
Depends { name: "ProjectExplorer" }
Depends { name: "TextEditor" }
Depends { name: "Utils" }
Depends { name: "ClangBackEndIpc" }
Depends { name: "ClangSupport" }
Depends { name: "libclang"; required: false }
pluginTestDepends: [
@@ -41,7 +41,7 @@ QtcPlugin {
"clangassistproposalitem.h",
"clangassistproposalmodel.cpp",
"clangassistproposalmodel.h",
"clangbackendipcintegration.cpp",
"clangsupportintegration.cpp",
"clangbackendipcintegration.h",
"clangcodemodelplugin.cpp",
"clangcodemodelplugin.h",

View File

@@ -1,7 +1,7 @@
QTC_PLUGIN_NAME = ClangCodeModel
QTC_LIB_DEPENDS += \
utils \
clangbackendipc
clangsupport
QTC_PLUGIN_DEPENDS += \
coreplugin \
cpptools \

View File

@@ -49,7 +49,7 @@
#include <cplusplus/Icons.h>
#include <cplusplus/SimpleLexer.h>
#include <clangbackendipc/filecontainer.h>
#include <clangsupport/filecontainer.h>
#include <utils/algorithm.h>
#include <utils/mimetypes/mimedatabase.h>

View File

@@ -29,7 +29,7 @@
#include <cpptools/cppcompletionassistprocessor.h>
#include <clangbackendipc/codecompletion.h>
#include <clangsupport/codecompletion.h>
#include <QCoreApplication>
#include <QTextCursor>

View File

@@ -25,7 +25,7 @@
#pragma once
#include <clangbackendipc/codecompletion.h>
#include <clangsupport/codecompletion.h>
#include <sqlite/utf8string.h>

View File

@@ -25,7 +25,7 @@
#pragma once
#include <clangbackendipc/diagnosticcontainer.h>
#include <clangsupport/diagnosticcontainer.h>
#include <QVector>

View File

@@ -29,7 +29,7 @@
#include <texteditor/refactoroverlay.h>
#include <clangbackendipc/diagnosticcontainer.h>
#include <clangsupport/diagnosticcontainer.h>
#include <QList>
#include <QSet>

View File

@@ -25,7 +25,7 @@
#pragma once
#include <clangbackendipc/diagnosticcontainer.h>
#include <clangsupport/diagnosticcontainer.h>
QT_BEGIN_NAMESPACE
class QLayout;

View File

@@ -27,7 +27,7 @@
#include <texteditor/quickfix.h>
#include <clangbackendipc/fixitcontainer.h>
#include <clangsupport/fixitcontainer.h>
#include <utils/changeset.h>

View File

@@ -27,7 +27,7 @@
#include <texteditor/quickfix.h>
#include <clangbackendipc/diagnosticcontainer.h>
#include <clangsupport/diagnosticcontainer.h>
namespace ClangCodeModel {

View File

@@ -32,7 +32,7 @@
#include <texteditor/semantichighlighter.h>
#include <clangbackendipc/highlightingmarkcontainer.h>
#include <clangsupport/highlightingmarkcontainer.h>
namespace ClangCodeModel {

View File

@@ -25,7 +25,7 @@
#pragma once
#include <clangbackendipc/diagnosticcontainer.h>
#include <clangsupport/diagnosticcontainer.h>
namespace ClangCodeModel {
namespace Internal {

View File

@@ -38,9 +38,9 @@
#include <projectexplorer/project.h>
#include <clangbackendipc/cmbregisterprojectsforeditormessage.h>
#include <clangbackendipc/filecontainer.h>
#include <clangbackendipc/projectpartcontainer.h>
#include <clangsupport/cmbregisterprojectsforeditormessage.h>
#include <clangsupport/filecontainer.h>
#include <clangsupport/projectpartcontainer.h>
#include <utils/qtcassert.h>
#include <QCoreApplication>

View File

@@ -25,8 +25,8 @@
#pragma once
#include <clangbackendipc_global.h>
#include <clangbackendipc/diagnosticcontainer.h>
#include <clangsupport_global.h>
#include <clangsupport/diagnosticcontainer.h>
#include <texteditor/textmark.h>

View File

@@ -44,7 +44,7 @@
#include <texteditor/textdocument.h>
#include <texteditor/texteditor.h>
#include <clangbackendipc/clangcodemodelservermessages.h>
#include <clangsupport/clangcodemodelservermessages.h>
#include <utils/changeset.h>
#include <utils/qtcassert.h>