Tiny C chat project built with Meson and Ninja.
gccmesonninja
On Ubuntu/Debian you can install everything with:
chmod +x scripts/setup_ubuntu.sh
./scripts/setup_ubuntu.shBuild the server:
meson setup build
meson compile -C buildBuild server and client:
meson setup build -Dbuild_client=true
meson compile -C buildStart the server:
./build/cchat_serverStart the server on a custom port:
./build/cchat_server 5555If the client target is enabled:
./build/cchat_client