update readme #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |