mirror of https://github.com/qt/qtdatavis3d.git
Merge remote-tracking branch 'origin/wip/qt6' into dev
Conflicts: .qmake.conf Change-Id: Ic4b3c490262e4a72bdd45b03828b88a784a4b9b8
This commit is contained in:
commit
a87ef47a47
|
|
@ -2,6 +2,6 @@ load(qt_build_config)
|
|||
|
||||
DEFINES += QT_NO_JAVA_STYLE_ITERATORS QT_NO_LINKED_LIST
|
||||
|
||||
MODULE_VERSION = 5.15.0
|
||||
MODULE_VERSION = 6.0.0
|
||||
CONFIG += warning_clean
|
||||
CMAKE_MODULE_TESTS=-
|
||||
|
|
|
|||
|
|
@ -144,7 +144,9 @@ void QtDataVisualizationQml2Plugin::registerTypes(const char *uri)
|
|||
// New revisions
|
||||
qmlRegisterType<Q3DLight, 1>(uri, 1, 3, "Light3D");
|
||||
|
||||
qmlRegisterModule(uri, 1, QT_VERSION_MINOR);
|
||||
// The minor version used to be the current Qt 5 minor. For compatibility it is the last
|
||||
// Qt 5 release.
|
||||
qmlRegisterModule(uri, 1, 15);
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE_DATAVISUALIZATION
|
||||
|
|
|
|||
Loading…
Reference in New Issue