forked from qt-creator/qt-creator
QmlDesignerBase: Fix (qbs) build
There's been another "refactoring", i.e. randomly moving files around and using wrong include types. Change-Id: Ia48d454f212acbcd489b48d15c196e4e5e20a8b7 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -7,6 +7,9 @@ QtcPlugin {
|
||||
Depends { name: "ProjectExplorer" }
|
||||
Depends { name: "QtSupport" }
|
||||
Depends { name: "Qt.quickwidgets" }
|
||||
Depends { name: "Qt.gui-private" }
|
||||
|
||||
cpp.includePaths: ["settings", "studio", "utils"]
|
||||
|
||||
files: [
|
||||
"qmldesignerbase_global.h",
|
||||
@@ -17,6 +20,8 @@ QtcPlugin {
|
||||
Group {
|
||||
prefix: "studio/"
|
||||
files: [
|
||||
"studioquickutils.cpp",
|
||||
"studioquickutils.h",
|
||||
"studioquickwidget.cpp",
|
||||
"studioquickwidget.h",
|
||||
"studiosettingspage.cpp",
|
||||
@@ -25,6 +30,8 @@ QtcPlugin {
|
||||
"studiostyle.h",
|
||||
"studiostyle_p.cpp",
|
||||
"studiostyle_p.h",
|
||||
"studiovalidator.cpp",
|
||||
"studiovalidator.h",
|
||||
]
|
||||
}
|
||||
Group {
|
||||
@@ -32,10 +39,18 @@ QtcPlugin {
|
||||
files: [
|
||||
"designerpaths.cpp",
|
||||
"designerpaths.h",
|
||||
"designersettings.cpp",
|
||||
"designersettings.h",
|
||||
"qmlpuppetpaths.cpp",
|
||||
"qmlpuppetpaths.h",
|
||||
"windowmanager.cpp",
|
||||
"windowmanager.h",
|
||||
]
|
||||
Group {
|
||||
prefix: "settings/"
|
||||
files: [
|
||||
"designersettings.cpp",
|
||||
"designersettings.h",
|
||||
"qmldesignersettings_global.h",
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -3,7 +3,7 @@
|
||||
|
||||
#include "converters.h"
|
||||
#include "utils/algorithm.h"
|
||||
#include "qmlprojectexporter/filetypes.h"
|
||||
#include "../../qmlprojectexporter/filetypes.h"
|
||||
|
||||
#include <QJsonDocument>
|
||||
|
||||
|
@@ -8,8 +8,8 @@
|
||||
|
||||
#include "converters.h"
|
||||
|
||||
#include <qmlproject.h>
|
||||
#include <qmlprojectconstants.h>
|
||||
#include "../../qmlproject.h"
|
||||
#include "../../qmlprojectconstants.h"
|
||||
|
||||
#include <utils/algorithm.h>
|
||||
#include <utils/qtcassert.h>
|
||||
|
@@ -2,9 +2,9 @@
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
||||
|
||||
#include "exporter.h"
|
||||
#include "qmlbuildsystem.h"
|
||||
|
||||
#include "projectitem/qmlprojectitem.h"
|
||||
#include "../buildsystem/qmlbuildsystem.h"
|
||||
#include "../buildsystem/projectitem/qmlprojectitem.h"
|
||||
|
||||
namespace QmlProjectManager {
|
||||
namespace QmlProjectExporter {
|
||||
|
@@ -2,13 +2,13 @@
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
||||
|
||||
#include "filegenerator.h"
|
||||
#include "qmlbuildsystem.h"
|
||||
|
||||
#include "../buildsystem/qmlbuildsystem.h"
|
||||
#include "../qmlprojectconstants.h"
|
||||
#include "../qmlprojectmanagertr.h"
|
||||
|
||||
#include <projectexplorer/projectmanager.h>
|
||||
|
||||
#include <qmlprojectmanager/qmlprojectconstants.h>
|
||||
#include <qmlprojectmanager/qmlprojectmanagertr.h>
|
||||
|
||||
#include <coreplugin/actionmanager/actioncontainer.h>
|
||||
#include <coreplugin/actionmanager/actionmanager.h>
|
||||
|
||||
|
Reference in New Issue
Block a user