ci: (MacOS) Fix installation of Qt5
Homebrew now defaults to Qt6, but we still require Qt5 for the time being.
This commit is contained in:
parent
766cb605db
commit
eef6d2d445
|
@ -195,8 +195,7 @@ jobs:
|
||||||
- name: "Prerequisties: Qt"
|
- name: "Prerequisties: Qt"
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
brew install qt5
|
brew install qt@5
|
||||||
ls -lha /usr/local/opt/qt/lib/cmake/Qt5
|
|
||||||
- name: "Configure Project"
|
- name: "Configure Project"
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -205,7 +204,7 @@ jobs:
|
||||||
-DCMAKE_INSTALL_PREFIX="build/distrib" \
|
-DCMAKE_INSTALL_PREFIX="build/distrib" \
|
||||||
-DPACKAGE_NAME="streamfx-${{ matrix.id }}" \
|
-DPACKAGE_NAME="streamfx-${{ matrix.id }}" \
|
||||||
-DPACKAGE_PREFIX="build/package" \
|
-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"
|
- name: "Build Project"
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue