Skip to content

Update CLAP to 1.1.8 #46

Update CLAP to 1.1.8

Update CLAP to 1.1.8 #46

Workflow file for this run

name: Windows
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
cl:
name: CL
runs-on: windows-2022
steps:
- name: Check out code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install ninja
run: choco install ninja
- name: Install conan
run: |
pip3 install --force-reinstall "conan==1.59.0"
conan config init
conan config set general.revisions_enabled=1
- name: Set up Visual Studio shell
uses: egor-tensin/vs-shell@v2
with:
arch: x64
- name: Build - Release
run: |
cmake -S. -Bbuild -G "Visual Studio 17 2022" -D CMAKE_BUILD_TYPE=Release
cmake --build build --config Release