From 45125ba0d2abf64137711c77dd9e36907873ecb8 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Wed, 21 Dec 2022 23:24:42 +0100 Subject: [PATCH] Use custom brew path on Mac if it is defined Signed-off-by: Alexander Borsuk --- CMakeLists.txt | 7 ++++++- tools/unix/generate_localizations.sh | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 807bf143ec..9ae6a1c271 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -239,8 +239,13 @@ if (NOT PLATFORM_IPHONE AND NOT PLATFORM_ANDROID) if (NOT SKIP_DESKTOP) list(APPEND qt_components Gui Xml Svg) endif() + if (DEFINED ENV{HOMEBREW_PREFIX}) + set(HOMEBREW_PREFIX $ENV{HOMEBREW_PREFIX}) + else() + set(HOMEBREW_PREFIX /opt/homebrew) + endif() # PATHS are hard-coded hints where to look for qt5 in addition to other places. - find_package(Qt5 COMPONENTS REQUIRED ${qt_components} PATHS $ENV{QT_PATH} /opt/homebrew/opt/qt@5 /usr/local/opt/qt@5 /usr/lib/x86_64-linux-gnu/qt5) + find_package(Qt5 COMPONENTS REQUIRED ${qt_components} PATHS $ENV{QT_PATH} ${HOMEBREW_PREFIX}/opt/qt@5 /usr/local/opt/qt@5 /usr/lib/x86_64-linux-gnu/qt5) if (Qt5_VERSION VERSION_LESS 5.5.0) message(FATAL_ERROR "Minimum supported Qt5 version is 5.5") endif() diff --git a/tools/unix/generate_localizations.sh b/tools/unix/generate_localizations.sh index 60f52638d6..32dcca1283 100755 --- a/tools/unix/generate_localizations.sh +++ b/tools/unix/generate_localizations.sh @@ -6,8 +6,8 @@ case $OSTYPE in darwin*) if [ -x /usr/local/opt/ruby/bin/ruby ]; then PATH="/usr/local/opt/ruby/bin:$PATH" - elif [ -x /opt/homebrew/opt/ruby/bin/ruby ]; then - PATH="/opt/homebrew/opt/ruby/bin:$PATH" + elif [ -x "${HOMEBREW_PREFIX:-/opt/homebrew}/opt/ruby/bin/ruby" ]; then + PATH="${HOMEBREW_PREFIX:-/opt/homebrew}/opt/ruby/bin:$PATH" else echo 'Please install Homebrew ruby by running "brew install ruby"' exit 1