Skip to content

update readme

update readme #17

name: mac_boost_arm64
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install BOOST
run: brew install boost
- name: CMake set-up
run: cmake . -G Xcode -DCMAKE_TOOLCHAIN_FILE=./apple.toolchain.cmake -DPLATFORM=MAC_ARM64 -DUSE_BOOST=ON
- name: make
run: cmake --build . --config Release