Skip to content

better packaging

better packaging #44

Workflow file for this run

name: Linux CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: dependencies
run: sudo apt-get install libglvnd-dev libxi-dev libxcursor-dev libasound2-dev
- name: mkdir
run: mkdir build
- name: configure
run: cmake .. -DCMAKE_BUILD_TYPE=Release
working-directory: ./build
- name: build
run: cmake --build .
working-directory: ./build