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: "ProjectExplorer" }
|
||||||
Depends { name: "QtSupport" }
|
Depends { name: "QtSupport" }
|
||||||
Depends { name: "Qt.quickwidgets" }
|
Depends { name: "Qt.quickwidgets" }
|
||||||
|
Depends { name: "Qt.gui-private" }
|
||||||
|
|
||||||
|
cpp.includePaths: ["settings", "studio", "utils"]
|
||||||
|
|
||||||
files: [
|
files: [
|
||||||
"qmldesignerbase_global.h",
|
"qmldesignerbase_global.h",
|
||||||
@@ -17,6 +20,8 @@ QtcPlugin {
|
|||||||
Group {
|
Group {
|
||||||
prefix: "studio/"
|
prefix: "studio/"
|
||||||
files: [
|
files: [
|
||||||
|
"studioquickutils.cpp",
|
||||||
|
"studioquickutils.h",
|
||||||
"studioquickwidget.cpp",
|
"studioquickwidget.cpp",
|
||||||
"studioquickwidget.h",
|
"studioquickwidget.h",
|
||||||
"studiosettingspage.cpp",
|
"studiosettingspage.cpp",
|
||||||
@@ -25,6 +30,8 @@ QtcPlugin {
|
|||||||
"studiostyle.h",
|
"studiostyle.h",
|
||||||
"studiostyle_p.cpp",
|
"studiostyle_p.cpp",
|
||||||
"studiostyle_p.h",
|
"studiostyle_p.h",
|
||||||
|
"studiovalidator.cpp",
|
||||||
|
"studiovalidator.h",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Group {
|
Group {
|
||||||
@@ -32,10 +39,18 @@ QtcPlugin {
|
|||||||
files: [
|
files: [
|
||||||
"designerpaths.cpp",
|
"designerpaths.cpp",
|
||||||
"designerpaths.h",
|
"designerpaths.h",
|
||||||
"designersettings.cpp",
|
|
||||||
"designersettings.h",
|
|
||||||
"qmlpuppetpaths.cpp",
|
"qmlpuppetpaths.cpp",
|
||||||
"qmlpuppetpaths.h",
|
"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 "converters.h"
|
||||||
#include "utils/algorithm.h"
|
#include "utils/algorithm.h"
|
||||||
#include "qmlprojectexporter/filetypes.h"
|
#include "../../qmlprojectexporter/filetypes.h"
|
||||||
|
|
||||||
#include <QJsonDocument>
|
#include <QJsonDocument>
|
||||||
|
|
||||||
|
@@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
#include "converters.h"
|
#include "converters.h"
|
||||||
|
|
||||||
#include <qmlproject.h>
|
#include "../../qmlproject.h"
|
||||||
#include <qmlprojectconstants.h>
|
#include "../../qmlprojectconstants.h"
|
||||||
|
|
||||||
#include <utils/algorithm.h>
|
#include <utils/algorithm.h>
|
||||||
#include <utils/qtcassert.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
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
||||||
|
|
||||||
#include "exporter.h"
|
#include "exporter.h"
|
||||||
#include "qmlbuildsystem.h"
|
|
||||||
|
|
||||||
#include "projectitem/qmlprojectitem.h"
|
#include "../buildsystem/qmlbuildsystem.h"
|
||||||
|
#include "../buildsystem/projectitem/qmlprojectitem.h"
|
||||||
|
|
||||||
namespace QmlProjectManager {
|
namespace QmlProjectManager {
|
||||||
namespace QmlProjectExporter {
|
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
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
||||||
|
|
||||||
#include "filegenerator.h"
|
#include "filegenerator.h"
|
||||||
#include "qmlbuildsystem.h"
|
|
||||||
|
#include "../buildsystem/qmlbuildsystem.h"
|
||||||
|
#include "../qmlprojectconstants.h"
|
||||||
|
#include "../qmlprojectmanagertr.h"
|
||||||
|
|
||||||
#include <projectexplorer/projectmanager.h>
|
#include <projectexplorer/projectmanager.h>
|
||||||
|
|
||||||
#include <qmlprojectmanager/qmlprojectconstants.h>
|
|
||||||
#include <qmlprojectmanager/qmlprojectmanagertr.h>
|
|
||||||
|
|
||||||
#include <coreplugin/actionmanager/actioncontainer.h>
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
||||||
#include <coreplugin/actionmanager/actionmanager.h>
|
#include <coreplugin/actionmanager/actionmanager.h>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user