This project is a very simple yet very satisfying fluid particle simulator.
Please have the following installed :
- The gfortran compiler
- The
make
command - The
git
command - The raylib C library
$ git clone https://github.com/sama-gharib/fluid-sim.git
$ cd fluid-sim
$ make
The Makefile will download and build fortran-raylib by itself but you will still need to install raylib by yourself.
On Windows raylib requires additionnal linking flags when compiling. If compilation fails with a bunch of Undefined reference
errors try adding the -lopengl32 -lgdi32 -lwinmm
flags the the gfortran
command in the Makefile.