Merge pull request #57 from oclero/feature/cmake-presets #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Check Out | |
uses: actions/checkout@v4 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: '5.15.2' | |
host: windows | |
target: desktop | |
arch: win64_msvc2019_64 | |
- name: Configure CMake | |
run: cmake --preset windows | |
- name: Build the library. | |
run: cmake --build --preset windows | |
- name: Build the Sandbox app. | |
run: cmake --build --preset windows-sandbox |