2018-09-15 20:48:29 +02:00
|
|
|
# DbMessaging
|
2018-10-05 11:23:46 +02:00
|
|
|
Library to define messages, serialize them and create and apply delta messages (to update the "original" on server for example).
|
|
|
|
|
|
2018-10-05 12:33:01 +02:00
|
|
|
[](https://travis-ci.org/0xFEEDC0DE64/DbMessaging) [](https://www.codacy.com/app/0xFEEDC0DE64/DbMessaging?utm_source=github.com&utm_medium=referral&utm_content=0xFEEDC0DE64/DbMessaging&utm_campaign=Badge_Grade)
|
|
|
|
|
|
|
|
|
|
## Building from source
|
2018-10-05 11:23:46 +02:00
|
|
|
This project can only be built as part of the project structure [DbSoftware](https://github.com/0xFEEDC0DE64/DbSoftware)
|
|
|
|
|
|
|
|
|
|
```Shell
|
|
|
|
|
git clone https://github.com/0xFEEDC0DE64/DbSoftware.git
|
|
|
|
|
cd DbSoftware
|
|
|
|
|
git submodule update --init --recursive DbMessaging
|
|
|
|
|
cd ..
|
|
|
|
|
mkdir build_DbSoftware
|
|
|
|
|
cd build_DbSoftware
|
|
|
|
|
qmake CONFIG+=ccache ../DbSoftware
|
|
|
|
|
make -j$(nproc) sub-DbMessaging
|
|
|
|
|
make sub-DbMessaging-install_subtargets
|
2018-10-05 12:33:01 +02:00
|
|
|
./bin/messagingserver &
|
|
|
|
|
./bin/messagingclient
|
2018-10-05 11:23:46 +02:00
|
|
|
```
|