mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 19:17:26 -04:00
Merge pull request #2910
efc9ad4 cmake: fix Qt 5.14+ build, link Qt5QmlModels if available (xiphon)
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user