Skip to content

change cmake version #3

change cmake version

change cmake version #3

Workflow file for this run

name: Build on Windows
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Configure
run: cmake -B build -S . -G "Visual Studio 17 2022" -A x64
- name: Build
run: cmake --build build --config Release --parallel