xref: /openbmc/gpioplus/README.md (revision 2f8444ce)
1# gpioplus
2
3gpioplus is a c++ wrapper around the linux gpio ioctl interface.
4It aims to provide c++ ergonomics to the usage.
5
6## Building
7For a standard release build, you want something like:
8```
9meson setup -Dexamples=false -Dtests=disabled builddir
10ninja -C builddir
11ninja -C builddir install
12```
13
14For a test / debug build, a typical configuration is
15```
16meson setup -Dtests=enabled builddir
17meson test -C builddir
18```
19