Skip to content

update readme

update readme #13

Workflow file for this run

name: ubuntu_arm64
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare crosscompile
run: |
sudo apt update
sudo apt -y install crossbuild-essential-arm64
- name: CMake set-up
run: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=./ubuntu.toolchain.cmake .
- name: make
run: cmake --build .