To run the build the program you can use CMAKE or Make.
Running the following commands
make all
make run_server # Run this in one terminal
make run_client # Run this in another terminalCreate a build directory:
mkdir build
cd buildRun the command below from within the build directory:
cmake ..This will make your Makefile then build your project by running the command below:
makeThis will create the executables.
Run the server executable:
./serverOpen another terminal and run the client executable:
./client