Skip to content

Add MSVC Support

Add MSVC Support #21

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-Project:
name: Build Project
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu
cxx: g++
- os: windows
cxx: cl
steps:
- name: Checkout
uses: actions/[email protected]
- name: Configure Project
uses: threeal/[email protected]
with:
cxx-compiler: ${{ matrix.cxx }}
- name: Build Project
run: cmake --build build --config Release
- name: Install Project
run: cmake --install build --prefix install
- name: Upload Project as Artifact
uses: actions/[email protected]
with:
path: install