Fix QML in Qt6

This means having two versions of everything, the idea is to migrate to Qt6, test that everything works fine and drop Qt5 as soon as possible.
This commit is contained in:
Luis Ángel San Martín
2022-09-07 16:53:52 +02:00
parent 60e2255886
commit bc35b5d65f
8 changed files with 1260 additions and 2 deletions

View File

@ -294,7 +294,11 @@ HEADERS += grid_comics_view.h \
SOURCES += grid_comics_view.cpp \
comics_view_transition.cpp
RESOURCES += qml.qrc
greaterThan(QT_MAJOR_VERSION, 5) {
RESOURCES += qml6.qrc
} else {
RESOURCES += qml.qrc
}
win32:RESOURCES += qml_win.qrc
unix:!macx:RESOURCES += qml_win.qrc
macx:RESOURCES += qml_osx.qrc