mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
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:
@ -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
|
||||
|
Reference in New Issue
Block a user