[cmake] Hint to find qt5 on Mac OS X
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
f8fcec3254
commit
9a80c25062
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
|
Reference in a new issue