An open API service indexing awesome lists of open source software.

https://github.com/openbmc/gpioplus


https://github.com/openbmc/gpioplus

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# gpioplus

gpioplus is a c++ wrapper around the linux gpio ioctl interface. It aims to
provide c++ ergonomics to the usage.

## Building

For a standard release build, you want something like:

```sh
meson setup -Dexamples=false -Dtests=disabled builddir
ninja -C builddir
ninja -C builddir install
```

For a test / debug build, a typical configuration is

```sh
meson setup -Dtests=enabled builddir
meson test -C builddir
```