An open API service indexing awesome lists of open source software.

https://github.com/arkenidar/snake-sdl

basic game : snake.c via libSDL3
https://github.com/arkenidar/snake-sdl

c game sdl sdl3 simple starter

Last synced: 10 days ago
JSON representation

basic game : snake.c via libSDL3

Awesome Lists containing this project

README

        

# instructions

## requirements

- cmake
- ninja
- compiler such as GCC
- git for clone

## clone SDL ( one time setup )

```shell
git clone https://github.com/libsdl-org/SDL
```

## build and run with cmake

### from VSCode

### from Shell

```shell
cmake -S . -B build -G Ninja && cmake --build build && build/snake
```