2 Commits

Author SHA1 Message Date
82acb78690 test pr merging with failed action
Some checks failed
Build ptprnt / build (push) Failing after 1m1s
2023-09-25 20:00:47 +02:00
7c94758565 Update dependency install instructions
All checks were successful
Build ptprnt / build (push) Successful in 1m0s
2023-09-25 19:51:45 +02:00
2 changed files with 13 additions and 0 deletions

View File

@@ -25,3 +25,5 @@ jobs:
run: ninja -C builddir coverage-text run: ninja -C builddir coverage-text
- name: Coverage report - name: Coverage report
run: cat ./builddir/meson-logs/coverage.txt run: cat ./builddir/meson-logs/coverage.txt
- name: intended-fail
run: false

View File

@@ -12,6 +12,17 @@ This project requires:
- gtest (optional, for testing, will be installed by meson) - gtest (optional, for testing, will be installed by meson)
- gcov (optional, for coverage reports) - gcov (optional, for coverage reports)
Install dependencies on Arch Linux
``` bash
pacman -S libusb spdlog pango cairo meson gcovr
```
Install dependencies on Debian/Ubuntu
``` bash
apt-get install libusb-1.0-0-dev libspdlog-dev libpango1.0-dev libcairo2-dev meson gcovr
```
## Build ## Build
Clone the repository and simply let meson do the heavy lifting. Clone the repository and simply let meson do the heavy lifting.