This repository serves as a simple template for the raylib graphics library. The primary goal of this template is to be self contained, meaning that the number of dependencies for compilation has been minizmized.
The example program is written in c++ & includes a single main file and a simple makefile that compiles & links statically to the raylib library. To use a template that utilizes multiple source & header files, please navigate to the 2nd Raylib-linux-template
This repository contains the required header & object files needed to compile your program with raylib. Raylib provides an easy way to incorporate graphics, sound, and user input into your programs.
Files included from raylib v5.0 release Source Repository: https://github.com/raysan5/raylib
Raylib requires the opengl library to link properly
To install on linux: sudo apt-get install mesa-utils
To compile the program: make
Then, to run the program: ./program
If you wish to compile & then immediately run your program: make run
To clean up the workspace (objects & binary): make clean