installing qt5 with brew

This commit is contained in:
Alessandro Muntoni 2024-02-01 12:12:21 +01:00
parent fdbaea720b
commit 0b55b84e0a

View File

@ -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