Skip to content

update readme

update readme #10

Workflow file for this run

name: mac_boost_x64
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install BOOST and NASM
run: brew install boost nasm
- name: CMake set-up
run: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_APPLE_SILICON_PROCESSOR=x86_64 -DUSE_BOOST=ON .
- name: make
run: cmake --build .