mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
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
1 changed files with 2 additions and 3 deletions
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue