An unofficial WhatsApp linux client written in C++ with the help of gtkmm-3.0 and webkit2.
Please read CONTRIBUTING.md.
- cmake >= 3.2
- gtkmm-3.0
- webkit2gtk-4.0
For development:
- Create a debug build directory.
mkdir -p build/debug
- Build.
cmake -DCMAKE_BUILD_TYPE=Debug --build build/debug
- Create symbolic links to ui files in build folder.
ln -s ui/ build/debug/
- Run.
./build/debug/WhatsApp
For full installation, add -DINSTALL_RESOURCES=on
to the CMake options, and
use cmake --install build/debug
or make install -C build/debug
after
building (you'll probably need administrator privileges for the installation).