Skip to content

update readme

update readme #10

Workflow file for this run

name: win_boost_x64
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install BOOST and NASM
run: |
vcpkg install boost-system:x64-windows
vcpkg install boost-thread:x64-windows
vcpkg install boost-lockfree:x64-windows
vcpkg integrate install
choco install nasm
- name: CMake set-up
run: cmake -S . `-D CMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DUSE_BOOST=ON`
- name: make
run: cmake --build . --config Release