Skip to content

fixed compiler flags for msvc #4

fixed compiler flags for msvc

fixed compiler flags for msvc #4

Workflow file for this run

name: Build
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
cmake . -DCMAKE_BUILD_TYPE=Release
cmake --build .