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++
- Host: GitHub
- URL: https://github.com/pixlone/ipcgull
- Owner: PixlOne
- License: gpl-3.0
- Created: 2022-01-06T07:40:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T18:00:35.000Z (almost 2 years ago)
- Last Synced: 2025-03-25T23:51:26.453Z (2 months ago)
- Language: C++
- Size: 158 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.