It's just snake.
You need make
and cmake
for compiling.
On Ubuntu, install them with
sudo apt-get install build-essential cmake
You will also need to install the ncurses library. On Ubuntu, you can do this via
sudo apt-get install libncurses5-dev libncursesw5-dev
Then, you compile by running
cmake -B./build && cd build
make -j$(nproc)
After compiling, simply run
./build/snake
from the project root.
You control the snake with the WASD-keys. Quit the game using the Q key.
Have fun! 🍎