A simple terminal based game for Linux
snap install shellsnakeInstall the dependencies
sudo apt install libncurses5-dev libgtest-devDownload the source code
git clone https://github.com/vozdeckyl/Snake.gitCreate the build directory
cd Snake
mkdir build
cd buildCompile
cmake ..
cmake --build .The app then can be run from the build directory
./snakeor it can be installed using
sudo make installand run from anywhere using
snakeFrom the root directory
mkdir docs
cd src
doxygen ../dconfig