Skip to content

Buildsystem update #132

Buildsystem update

Buildsystem update #132

Workflow file for this run

name: Native Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{matrix.os-type}}
strategy:
matrix:
os-type: [windows-latest]
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Configure
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.configuration}} -DCMAKE_BUILD_TYPE=%2 -DASSIMP_BUILD_TESTS=0 -DBUILD_SHARED_LIBS=0
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.configuration}}