Skip to content

itsYakub/Simple-Raylib-Template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Raylib Template 📜

🔎 Overview

This is the simple template for raylib games and applications, written in C.

Prerequesites 📝

Setup 🛠️

  • Create a Github repository from this template or clone this repo directly from Github (up to you!);
  • In the projects directory:
    • Pull all the ncessary submodules:
    git submodule update --init --recursive
    • Create and enter your final binary directory:
    mkdir bin/
    cd bin/
    • Generate a build file of your choosing...
    cmake .. -G  <generator-name>
    ... or use a default generator:
    cmake ..
    • Build your final executable file:
    cmake --build .

©️ Credits

Licence❕

This template is under the MIT Licence, but you can freely modify it, change it to whatever suits your needs!