From 0b55b84e0afe3de888cfc2ac2f86e39f6d856863 Mon Sep 17 00:00:00 2001 From: Alessandro Muntoni Date: Thu, 1 Feb 2024 12:12:21 +0100 Subject: [PATCH] installing qt5 with brew --- scripts/macOS/0_setup_env.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/scripts/macOS/0_setup_env.sh b/scripts/macOS/0_setup_env.sh index 3dbf3c8f0..73948a671 100644 --- a/scripts/macOS/0_setup_env.sh +++ b/scripts/macOS/0_setup_env.sh @@ -28,13 +28,7 @@ npm install -g appdmg if [ "$DONT_INSTALL_QT" = false ] ; then echo "=== installing qt packages..." - brew install qt - - echo "export QTDIR=/usr/local/opt/qt" >> ~/.bash_profile - echo "export PATH=$QTDIR/bin:$PATH" >> ~/.bash_profile - echo "export LD_LIBRARY_PATH=/usr/local/opt/qt/lib:$LD_LIBRARY_PATH" >> ~/.bash_profile - echo "export PKG_CONFIG_PATH=/usr/local/opt/qt/lib:$PKG_CONFIG_PATH" >> ~/.bash_profile - . ~/.bash_profile + brew install qt5 else echo "=== jumping installation of qt packages..." fi