-
- Notifications
You must be signed in to change notification settings - Fork 245
Closed
Description
When I cmake install reactphysics3d I get the directory:
<installdir>/include/reactphysics3d but the following test program:
#include <reactphysics3d/reactphysics3d.h> int main() {} Doesn't compile:
$ cc -I <installdir> test.cc error:
reactphysics3d/configuration.h:36:10: fatal error: containers/Pair.h: No such file or directory This is because:
<installdir>/include/reactphysics3d/reactphysics3d.h includes:
<installdir>/include/reactphysics3d/configuration.h which has:
#include "containers/Pair.h" But no containers directory is in the <installdir>
Am I missing something?