Skip to content

Fixed cross-platform build for windows #4

Fixed cross-platform build for windows

Fixed cross-platform build for windows #4

Workflow file for this run

name: Windows
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install CMake
run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' --no-progress
- name: Check versions
run: |
gcc --version
cmake --version
- name: Build with CMake
run: |
mkdir build
cd build
cmake ..
cmake --build .