From 641d20ee71735803c17580292d0f3f2e497b6c86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Tue, 9 Jul 2024 14:20:19 +0200 Subject: [PATCH] Add Qt to CI. --- .github/workflows/build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1dd8043..87cf1fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,12 +10,21 @@ jobs: build: runs-on: windows-2022 steps: + - name: Install Qt + uses: jurplel/install-qt-action@v3 + with: + version: 6.7.0 + modules: + cache: true + - uses: actions/checkout@v4 - name: Configure Github++ build shell: pwsh run: | - cmake --preset vs2022-windows "-DCMAKE_INSTALL_PREFIX=install" + cmake --preset vs2022-windows ` + "-DCMAKE_PREFIX_PATH=${env:QT_ROOT_DIR}\msvc2019_64" ` + "-DCMAKE_INSTALL_PREFIX=install" - name: Build Github++ run: cmake --build vsbuild --config RelWithDebInfo