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/trunkCode: Select all
./configure --prefix=/usrCode: Select all
sudo make install usr