newton and irrlicht integration with tumle

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
RobbyRob
Posts: 21
Joined: Fri Mar 02, 2007 4:30 pm
Location: Germany

newton and irrlicht integration with tumle

Post by RobbyRob »

Help !

is there anybody out there who can help me, because it seems not possible to link newton and irrlicht with that "tumle" code:

//create the physics manager from the irrlicht device
tumle::IPhysicsManager *pmgr = 0;
pmgr=createPhysicsManager(device);


tried to use "tumle" code for linking newton to irrlicht; seams very interesting and simple to use, but..
when I run the "hello world" program integrated in code blocks, I got the following message:
Linking console executable: Irrlicht.exe
main_1.obj : error LNK2019: unresolved external symbol "class tumle::IPhysicsManager * __cdecl tumle::createPhysicsManager(class irr::IrrlichtDevice *)" (?createPhysicsManager@tumle@@YAPAVIPhysicsManager@1@PAVIrrlichtDevice@irr@@@Z) referenced in function _main
Irrlicht.exe : fatal error LNK1120: 1 unresolved externals
Process terminated with status 1 (0 minutes, 0 seconds)

I linked the source file with all the stuff in the build options, but always the same message, do you have an idea what goes wrong ?


Robert
:?
FuzzYspo0N
Posts: 914
Joined: Fri Aug 03, 2007 12:43 pm
Location: South Africa
Contact:

Post by FuzzYspo0N »

add all the cpp files in the src folder to ur project

also add all the h files fromt hat folder.

that shud fix it
Post Reply