1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-19 14:47:46 +00:00

Install Qt

This commit is contained in:
Joshua Goins 2024-04-23 16:05:39 -04:00
parent a4bf9f8d2e
commit b5fe1fd931

View file

@ -35,6 +35,11 @@ jobs:
c_compiler: cl c_compiler: cl
steps: steps:
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: "6.6.*"
- name: Set reusable strings - name: Set reusable strings
id: strings id: strings
shell: bash shell: bash
@ -46,7 +51,7 @@ jobs:
run: | run: |
git clone https://invent.kde.org/frameworks/extra-cmake-modules.git git clone https://invent.kde.org/frameworks/extra-cmake-modules.git
- name: Build and install ECM - name: Build and install Extra CMake Modules
run: | run: |
cmake -B ${{ steps.strings.outputs.build-output-dir }}-ECM -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -S extra-cmake-modules -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }} cmake -B ${{ steps.strings.outputs.build-output-dir }}-ECM -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -S extra-cmake-modules -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.prefix-dir }}
cmake --install ${{ steps.strings.outputs.build-output-dir }}-ECM cmake --install ${{ steps.strings.outputs.build-output-dir }}-ECM