Skip to content

Update README

Update README #43

Workflow file for this run

name: windows-x86
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-windows-x86:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat"
cmake -GNinja -B build .
cmake --build build -- all
cmake --build build -- check