[cmake] Hint to find qt5 on Mac OS X

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-12-05 00:59:29 +01:00 committed by Alexander Borsuk
parent f8fcec3254
commit 9a80c25062

View file

@ -207,7 +207,8 @@ if (NOT PLATFORM_IPHONE AND NOT PLATFORM_ANDROID)
if (NOT SKIP_DESKTOP)
list(APPEND qt_components Gui Xml Svg)
endif()
find_package(Qt5 COMPONENTS REQUIRED ${qt_components})
# PATHS are hard-coded hints where to look for qt5 in addition to other places.
find_package(Qt5 COMPONENTS REQUIRED ${qt_components} PATHS /usr/local/opt/qt@5)
if (Qt5_VERSION VERSION_LESS 5.5.0)
message(FATAL_ERROR "Minimum supported Qt5 version is 5.5")
endif()