HangMan game in C++
To build the command line version of the game create a directory in the project folder and from the directory run:
cmake -G "Your_Build_System_Generator" -dCLI=ON ..
make
Then you can run the game with:
./HangMan
To build the graphical version of the game create a directory in the project folder and from the directory run:
cmake -G "Your_Build_System_Generator" ..
make
./hm_GUI