Skip to content

[chg] change message input from value and uptr, to sptr only #675

[chg] change message input from value and uptr, to sptr only

[chg] change message input from value and uptr, to sptr only #675

Workflow file for this run

name: CMake4Win
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
cpp_std: [11, 14, 17, 20]
steps:
- uses: actions/checkout@v2
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_STANDARD=${{matrix.cpp_std}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}