Name
Date
Size
#Lines
LOC

..--

example/H--4538

src/H--1,177779

subprojects/H--43

test/H--963817

.clang-formatH A D18-Dec-20243.7 KiB137135

.gitignoreH A D03-Jun-202016 21

.lcovrcH A D16-Aug-201880 43

LICENSEH A D16-Aug-201811.1 KiB202169

OWNERSH A D30-Sep-20221.5 KiB4540

README.mdH A D29-Jul-2024429 2215

meson.buildH A D30-Jan-2025453 2319

meson.optionsH A D15-Aug-2023141 32

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