From eef6d2d4459b6d6785a4fca28a5d4d96daee2704 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 22 Mar 2021 22:35:15 +0100 Subject: [PATCH] ci: (MacOS) Fix installation of Qt5 Homebrew now defaults to Qt6, but we still require Qt5 for the time being. --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f4af4d41..61e71557 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -195,8 +195,7 @@ jobs: - name: "Prerequisties: Qt" shell: bash run: | - brew install qt5 - ls -lha /usr/local/opt/qt/lib/cmake/Qt5 + brew install qt@5 - name: "Configure Project" shell: bash run: | @@ -205,7 +204,7 @@ jobs: -DCMAKE_INSTALL_PREFIX="build/distrib" \ -DPACKAGE_NAME="streamfx-${{ matrix.id }}" \ -DPACKAGE_PREFIX="build/package" \ - -DQt5_DIR=/usr/local/opt/qt/lib/cmake/Qt5 + -DQt5_DIR=/usr/local/Cellar/qt@5/5.15.2/lib/cmake/Qt5 - name: "Build Project" shell: bash run: |