You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Box2DExample.cpp uses #include <Box2D/Box2D.h> while the actual box2d repo uses lower-case. This cause issue with case-sensitive filesystem on Linux. Change the include to use #include <box2d/box2d.h> fixes it.
Currently
Box2DExample.cppuses#include <Box2D/Box2D.h>while the actual box2d repo uses lower-case. This cause issue with case-sensitive filesystem on Linux. Change the include to use#include <box2d/box2d.h>fixes it.