From a343609bcaf6a251cdd8245c8e34c957771278d8 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Tue, 8 Feb 2022 15:13:21 +0600 Subject: [PATCH] macOS GH builds use Qt6 --- .github/workflows/cmake.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 216c1568d..07c9c38db 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -317,7 +317,7 @@ jobs: steps: - uses: actions/checkout@v2 - 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 run: >- cmake -S . -B build @@ -326,6 +326,8 @@ jobs: -D NEW_DYNAREC=${{ matrix.build.new-dynarec }} -D VNC=OFF -D CMAKE_BUILD_TYPE=${{ matrix.build.type }} + -D QT=ON + -D USE_QT6=ON - name: Build run: cmake --build build - name: Generate package