blob: c9156b886878bbd15ab07d2103cfbec1d13ed36a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# `xxcc` is a XMPP Chat Client
`xxcc` is a simple XMPP client written in C++, using the Qt5 framework,
as well as a few other dependencies also based in Qt5. As opposed to
other existing XMPP clients, `xxcc` is designed with touch-enabled
devices and small screens in mind.
**Note: `xxcc` is still considered early-stage software.**
## Building
`xxcc` can be built using the traditional procedure in CMake:
```
mkdir build
cd build/
cmake ..
cmake --build .
```
### Dependencies
- CMake `>= 3.13`
- `pkg-config`
- Qt5
- [QXmpp](qxmpp/qxmpp) (imported as a `git` submodule)
- [QtKeyChain](https://github.com/frankosterfeld/qtkeychain)
- [QCA](https://userbase.kde.org/QCA)
- [`libomemo-c`](https://github.com/dino/libomemo-c) (imported as a `git`
submodule)
##### Ubuntu / Debian
```
# apt install cmake qtkeychain-qt5-dev qttools5-dev-tools qtbase5-dev libsignal-protocol-c-dev
```
## License
Unless explicitly noted otherwise, `xxcc` is covered under the GNU General
Public License v3 or later. Third-party libraries and software used by
`xxcc` are covered by compatible licenses - read their project documentation
for further reference.
```
xxcc, a XMPP Chat Client
Copyright (C) 2023 Xavier Del Campo Romero
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
```
|