This is simple messenger for conversation.
- gcc compiler (tested with version 6.3.0)
- gtk2 library (to install use 'sudo apt-get install gtk-2.0')
Clone repository to your computer and execute following commands in folder with cloned files :
- Create runnable client file :
gcc -o gclient gclient.c client.c client.h `pkg-config --cflags --libs gtk+-2.0` - Create runnable server file :
gcc -o newserver newserver.c newserver.h - Create entry point for client start (It is possible to start client without it!) :
gcc -o talkme startTalkMe.c `pkg-config --cflags --libs gtk+-2.0`
To start server run command :
./newserver
There are available two ways:
- Via GUI:
./talkme - From terminal:
./gclient [user_name] [server_address]