1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-25 10:47:19 +01:00

cmake: fix Qt 5.14+ build, link Qt5QmlModels if available

This commit is contained in:
xiphon 2020-05-15 02:25:51 +00:00
parent c20a0ef928
commit efc9ad45e4

View File

@ -232,6 +232,12 @@ set(QT5_LIBRARIES
Qt5Svg
)
# TODO: drop this once we switch to Qt 5.14+
find_package(Qt5QmlModels QUIET)
if(Qt5QmlModels_FOUND)
list(APPEND QT5_LIBRARIES Qt5QmlModels)
endif()
foreach(QT5_MODULE ${QT5_LIBRARIES})
find_package(${QT5_MODULE} REQUIRED)
endforeach()