Skip to content

Update CMakeLists.txt #12

Update CMakeLists.txt

Update CMakeLists.txt #12

Workflow file for this run

name: linux build
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: sudo apt-get update;
sudo apt-get install libboost-dev;
sudo apt-get install libgtest-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}