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

https://github.com/pixlone/ipcgull

A GDBus-based IPC library for modern C++
https://github.com/pixlone/ipcgull

Last synced: about 2 months ago
JSON representation

A GDBus-based IPC library for modern C++

Awesome Lists containing this project

README

        

# Ipcgull
Ipcgull is a C++ IPC library that takes advantage of modern C++17 features to
provide a simple interface for developers to handle IPC.

Currently, Ipcgull only supports a D-Bus backend (via GDBus), but this is
abstracted by the library and can theoretically be replaced. However, that is
out of scope for this project.

## Documentation
This project was originally designed solely for use in
[LogiOps](https://github.com/PixlOne/logiops), and as such, it is not currently
documented. This is planned for the future though.

## Building

To build this project, run:

```
mkdir build
cd build
cmake ..
make
```

To compile tests, pass the `-DBUILD_TESTS` option to CMake.