I'd like to include Bullet in one of my projects, and i want to use static linking ( .a libs) instead of including the whole source.
So i tried to build these libraries using CMake and Make for Windows.
Anyway, i got stuck right after creating the makefile: if use make on the main makefile, it gives me this error instead:
Code: Select all
make[1]: CMakeFiles\Makefile2: No such file or directory
make[1]: *** No rule to make target `CMakeFiles\Makefile2'. Stop.
make: *** [all] Error 2
Where is the source code: bullet-2.77
Where to build the binaries: bullet-2.77/lib
Every variable value is left as-is except for USE_GLUT, which is disabled
Using MinGW with default native compilers.
What am I doing wrong?
Thanks in advance.