where i compile new project , give me " error: btBulletDynamicsCommon.h: No such file or directory ", but bullet is already installed!!!!!!!



q2:How to make the bullet folder within my program folder?????



Code: Select all
#include "btBulletDynamicsCommon.h"
Code: Select all
#include "bullet/btBulletDynamicsCommon.h"
If you are using cmake just override the CMAKE_INSTALL_PREFIX optioncuroro wrote:there are a folder named "local" in "usr" folder.
bullet tak install here "usr/local/lib" , "usr/local/include" instead "usr/include" & "usr/lib".
Code: Select all
cmake -DCMAKE_INSTALL_PREFIX=/usr path/to/bullet/trunk
Code: Select all
./configure --prefix=/usr
Code: Select all
sudo make install usr