Simple decentralized socket chat with encryption
- g++/clang with c++17 support
- boost-system 1.71
- SDL2
- GLEW
- OpenGL 3.0
- CMake 3.16 or something
Installing them from apt on ubuntu-based distros would look like that:
sudo apt install -y cmake libsdl2-dev libboost-system1.71-dev libglew-dev libgl-dev
git submodule update --init
mkdir build && cd build
cmake ..
make -j4
Server:
server [port(optional, default=1337)]
Client:
client [ip] [port] # use ip 0.0.0.0 for local testing