Has anybody been able to "embed" Chipmunk in some own VC++ 2005 project? I am currently trying to do this and fail quite badly
The provided MSVC++ 2005 Solution compiles nicely and out of the box. So I *could* directly link to the object code but ... Thats not what I would call a clean solution. Instead I would like to simply add all the source files to the project and then compile it.
So I took a close look at the Project Settings but could not find any difference except for two defines. So I added those, but that did not help.
I am aware that some people are providing static linking solutions. Thats not too bad, but not exactly what I want.
What puzzles me is, that MSVC++ 2005 does not seem to be C99 compliant, but the "original" solution somehow compiles.
Edit: Hehe, nevermind ... Simply compile the stuff as C++ Code (eg by changing the extension to .cpp) and the Visual Studio is happy
