Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 437 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 437 Bytes

simple_platform_raylib

My first attempt to build a simple game with Raylib, fully writen in C.

To clone the project and all the dependencies, use:

git clone --recursive git@github.com:GamerSenior/simple_platform_raylib.git

If already cloned, update submodules with:

git submodule update --init

Create build directory and configure the project:

mkdir build && cd build
cmake ../

Build the project:

cmake --build .