macOS GH builds use Qt6

This commit is contained in:
Cacodemon345 2022-02-08 15:13:21 +06:00 committed by GitHub
parent 6b4b438195
commit a343609bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -317,7 +317,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install dependencies - name: Install dependencies
run: brew install freetype sdl2 libpng openal-soft rtmidi qt@5 && brew link qt@5 run: brew install freetype sdl2 libpng openal-soft rtmidi qt
- name: Configure CMake - name: Configure CMake
run: >- run: >-
cmake -S . -B build cmake -S . -B build
@ -326,6 +326,8 @@ jobs:
-D NEW_DYNAREC=${{ matrix.build.new-dynarec }} -D NEW_DYNAREC=${{ matrix.build.new-dynarec }}
-D VNC=OFF -D VNC=OFF
-D CMAKE_BUILD_TYPE=${{ matrix.build.type }} -D CMAKE_BUILD_TYPE=${{ matrix.build.type }}
-D QT=ON
-D USE_QT6=ON
- name: Build - name: Build
run: cmake --build build run: cmake --build build
- name: Generate package - name: Generate package