Work around crash with singleton AbstractItemModels

This commit is contained in:
Nicolas Werner 2022-04-23 02:25:41 +02:00
parent 7137fd032a
commit e605936ce4
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9

View file

@ -4,7 +4,7 @@ option(APPVEYOR_BUILD "Build on appveyor" OFF)
option(CI_BUILD "Set when building in CI. Enables -Werror where possible" OFF) option(CI_BUILD "Set when building in CI. Enables -Werror where possible" OFF)
option(ASAN "Compile with address sanitizers" OFF) option(ASAN "Compile with address sanitizers" OFF)
option(QML_DEBUGGING "Enable qml debugging" OFF) option(QML_DEBUGGING "Enable qml debugging" OFF)
option(COMPILE_QML "Compile Qml. It will make Nheko faster, but you will need to recompile it, when you update Qt." OFF) option(COMPILE_QML "Compile Qml. It will make Nheko faster, but you will need to recompile it, when you update Qt." ON)
if(UNIX AND NOT APPLE) if(UNIX AND NOT APPLE)
option(MAN "Build man page" ON) option(MAN "Build man page" ON)
else() else()
@ -641,6 +641,7 @@ qt_add_qml_module(nheko
URI im.nheko URI im.nheko
RESOURCE_PREFIX "/" RESOURCE_PREFIX "/"
VERSION 1.0 VERSION 1.0
DEPENDENCIES QtQml # https://bugreports.qt.io/browse/QTBUG-102554
SOURCES SOURCES
src/timeline/DelegateChooser.cpp src/timeline/DelegateChooser.cpp
src/timeline/DelegateChooser.h src/timeline/DelegateChooser.h