Skip to content

Fix warnings when compiling on Mac #19

Fix warnings when compiling on Mac

Fix warnings when compiling on Mac #19

Workflow file for this run

name: Build
on: push
jobs:
windows_build:
name: Windows Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Compile
run: |
mkdir build
cmake -S . -B build -DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF -DCAN_DRIVER=None -DCMAKE_BUILD_TYPE=Debug
cmake --build build --config Debug