Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Similar issue with any example that uses another file besides raylib.h.  For example, trying out physics_demo.c gives:

physics_demo.c:22:10: fatal error: physac.h: No such file or directory

I have tried on two separate windows computers.  Ray, any workaround to this?

Okay, reading the header for the physics file it makes more sense.  However, everything with raymath.h isn't working either.

(+1)

In raylib 3.0 auxiliar libraries are not copied in compiler include path. If you need some auxiliar library just copy them from raylib/src to your user code path. All the used libraries are single-file header-only.

Thanks!