We use CMake to build the program.
a) Navigate to the /bin directory.
cd bin
b) Call CMake for the CMakeLists.txt file under /src
cmake ../src
c) Your Makefile should now be set up. You can build the project from /bin by calling make.
make
Run the executable TicTacToe in /bin.
cd bin
./TicTacToe
For help on usage details, run
./TicTacToe -h