forked from blue/squawk
Desktop Qt based XMPP messenger
core | ||
external | ||
packaging | ||
resources | ||
shared | ||
translations | ||
ui | ||
.gitmodules | ||
CHANGELOG.md | ||
CMakeLists.txt | ||
exception.cpp | ||
exception.h | ||
LICENSE.md | ||
main.cpp | ||
order.h | ||
README.md | ||
shared.h | ||
signalcatcher_win32.cpp | ||
signalcatcher.cpp | ||
signalcatcher.h | ||
squawk.rc |
Squawk - a compact XMPP desktop messenger
Prerequisites
- QT 5.12 (lower versions might work but it wasn't tested)
- uuid (usually included in some other package, for example it's libutil-linux in archlinux)
- lmdb
- CMake 3.0 or higher
- qxmpp 1.1.0 or higher
- kwallet (optional)
Getting
The easiest way to get the Squawk is to install it from AUR (if you use Archlinux like distribution)
Here is the link for the AUR package
You can also install it from console if you use some AUR wrapper. Here what it's going to look like with pacaur
$ pacaur -S squawk
Building
You can also clone the repo and build it from source
Squawk requires Qt with SSL enabled. It uses CMake as build system.
There are two ways to build, it depends whether you have qxmpp installed in your system
Building with system qxmpp
Here is what you do
$ git clone https://git.macaw.me/blue/squawk
$ cd squawk
$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .
Building with bundled qxmpp
Here is what you do
$ git clone --recurse-submodules https://git.macaw.me/blue/squawk
$ cd squawk
$ mkdir build
$ cd build
$ cmake .. -D SYSTEM_QXMPP=False
$ cmake --build .
List of keys
Here is the list of keys you can pass to configuration phase of cmake ..
.
CMAKE_BUILD_TYPE
-Debug
just builds showing all warnings,Release
builds with no warnings and applies optimizations (default isDebug
)SYSTEM_QXMPP
-True
tries to link againstqxmpp
installed in the system,False
builds bundledqxmpp
library (default isTrue
)WITH_KWALLET
-True
builds theKWallet
capability module ifKWallet
is installed and if not goes toFalse
.False
disablesKWallet
support (default isTrue
)
License
This project is licensed under the GPLv3 License - see the LICENSE.md file for details