diff --git a/.github/workflows/scripts/macos/build-dependencies.sh b/.github/workflows/scripts/macos/build-dependencies.sh index 4e3f035770..288f564c54 100755 --- a/.github/workflows/scripts/macos/build-dependencies.sh +++ b/.github/workflows/scripts/macos/build-dependencies.sh @@ -10,7 +10,6 @@ SDL=SDL2-2.26.0 PNG=1.6.37 JPG=9e SOUNDTOUCH=soundtouch-2.3.1 -WXWIDGETS=3.1.6 QT=6.3.1 mkdir deps-build @@ -77,27 +76,26 @@ make -C build install cd .. -if [ "$GUI" == "Qt" ]; then - echo "Installing Qt Base..." - tar xf "qtbase-everywhere-src-$QT.tar.xz" - cd "qtbase-everywhere-src-$QT" - cmake -B build -DCMAKE_PREFIX_PATH="$INSTALLDIR" -DCMAKE_INSTALL_PREFIX="$INSTALLDIR" -DCMAKE_BUILD_TYPE=Release -DFEATURE_optimize_size=ON -DFEATURE_dbus=OFF -DFEATURE_framework=OFF -DFEATURE_icu=OFF -DFEATURE_opengl=OFF -DFEATURE_printsupport=OFF -DFEATURE_sql=OFF -DFEATURE_gssapi=OFF - make -C build "-j$NPROCS" - make -C build install - cd .. - echo "Installing Qt SVG..." - tar xf "qtsvg-everywhere-src-$QT.tar.xz" - cd "qtsvg-everywhere-src-$QT" - cmake -B build -DCMAKE_PREFIX_PATH="$INSTALLDIR" -DCMAKE_INSTALL_PREFIX="$INSTALLDIR" -DCMAKE_BUILD_TYPE=MinSizeRel - make -C build "-j$NPROCS" - make -C build install - cd .. - echo "Installing Qt Tools..." - tar xf "qttools-everywhere-src-$QT.tar.xz" - cd "qttools-everywhere-src-$QT" - # Linguist relies on a library in the Designer target, which takes 5-7 minutes to build on the CI - # Avoid it by not building Linguist, since we only need the tools that come with it - patch -u src/linguist/CMakeLists.txt <