xref: /openbmc/gpioplus/README.md (revision 1f6cd3bc)
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```
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```
19meson setup -Dtests=enabled builddir
20meson test -C builddir
21```
22