Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
example/ | H | - | - | 45 | 38 | |
src/ | H | - | - | 1,177 | 779 | |
subprojects/ | H | - | - | 4 | 3 | |
test/ | H | - | - | 963 | 817 | |
.clang-format | H A D | 18-Dec-2024 | 3.7 KiB | 137 | 135 | |
.gitignore | H A D | 03-Jun-2020 | 16 | 2 | 1 | |
.lcovrc | H A D | 16-Aug-2018 | 80 | 4 | 3 | |
LICENSE | H A D | 16-Aug-2018 | 11.1 KiB | 202 | 169 | |
OWNERS | H A D | 30-Sep-2022 | 1.5 KiB | 45 | 40 | |
README.md | H A D | 29-Jul-2024 | 429 | 22 | 15 | |
meson.build | H A D | 30-Jan-2025 | 453 | 23 | 19 | |
meson.options | H A D | 15-Aug-2023 | 141 | 3 | 2 |
README.md
1# gpioplus 2 3gpioplus is a c++ wrapper around the linux gpio ioctl interface. It aims to 4provide c++ ergonomics to the usage. 5 6## Building 7 8For a standard release build, you want something like: 9 10```sh 11meson setup -Dexamples=false -Dtests=disabled builddir 12ninja -C builddir 13ninja -C builddir install 14``` 15 16For a test / debug build, a typical configuration is 17 18```sh 19meson setup -Dtests=enabled builddir 20meson test -C builddir 21``` 22