Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 653 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 653 Bytes

CppSnake

CppSnake is a simple Snake game made with OpenGL and C++

Build

To build this project, you'll need Meson. If you're on Windows, you'll also need to install git in order to clone the repository.

After installing the required tools, open your terminal/command prompt and clone this repository using git clone https://github.com/Tachi107/CppSnake.git. Then, enter the CppSnake folder and use meson to generate build files. Last, compile the project with meson compile.

git clone https://github.com/Tachi107/CppSnake.git
cd CppSnake
meson setup build
meson compile -C build