From 9a80c250629bfdf8e234873dd9231a5760840289 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sun, 5 Dec 2021 00:59:29 +0100 Subject: [PATCH] [cmake] Hint to find qt5 on Mac OS X Signed-off-by: Alexander Borsuk --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2c478ea5e..e965951ec9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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()