The Snake game recreated with C++ and SDL2
Windows build can be downloaded here. Just unpack to any folder and run snake.exe.
- CMake (version 3.7 or higher recommended)
- C++ Compiler: Compatible with C++17 standard
- SDL2 (>= 2.0.20)
- SDL2-ttf (>= 2.0.18)
git clone https://github.com/NemGam/Snake.git
cd Snake
From the project root directory, generate the build system:
cmake -S . -B build
Compile and install the project:
cmake --build build && cmake --install build
Execute the compiled application:
./dist/bin/snake