Skip to content

feat: update CMakeLists for Visual Studio #19

feat: update CMakeLists for Visual Studio

feat: update CMakeLists for Visual Studio #19

Workflow file for this run

name: Build
on:
push:
branches:
- master
paths-ignore:
- 'LICENSE'
- '**.md'
pull_request:
paths-ignore:
- 'LICENSE'
- '**.md'
env:
BUILD_DIR: ${{github.workspace}}/build
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure
run: cmake -B ${{env.BUILD_DIR}} -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build ${{env.BUILD_DIR}} --config Release --parallel 2