(I am French, I hope Slembcke will correct this message if he thinks it's important. <3 google translator)
I managed to run the library Chipmunk (latest) with the C/C++ IDE, Code:: Blocks 10.05, and I wanted to share it.
I created a basic project, which call only the function cpInitChipmunk() in the main function :
Code: Select all
#include <stdio.h>
#include <stdlib.h>
#include "../chipmunk/chipmunk.h"
int main()
{
cpInitChipmunk();
return 0;
}
(It doesn't appears after re-opening the project in the dialogbox but still exists)

This empty project is downloadable HERE, if you want to define it as the default template for futures Chipmunk's projects go to:
"File" -> "Save project as template ..."
If anybody wants more information about how to add openGl or SDL library to a codeblocks project, just say it.