atarax
20-07-2010 04:40:57
Im having a weird problem when trying to run NXOgre.
I have it compiled and added the headers and lib files to my linker settings.
When i use this code from the tutorial.....
I receive the error
LINK : fatal error LNK1104: cannot open file 'stlport_statix.lib'
Why is it looking for this lib file? Is STLPORT required to use the OGRE3DRender System?
I am using Ogre 1.6.5 and BloodyMess 1.5.5
I have it compiled and added the headers and lib files to my linker settings.
When i use this code from the tutorial.....
NxOgre::World* mWorld;
NxOgre::Scene* mScene;
OGRE3DRenderSystem* mRenderSystem;
mWorld = NxOgre::World::createWorld();
NxOgre::SceneDescription sceneDesc;
sceneDesc.mGravity = NxOgre::Vec3(0, -9.8f, 0);
sceneDesc.mName = "BloodyMessTutorial2";
mScene = mWorld->createScene(sceneDesc);
mScene->getMaterial(0)->setStaticFriction(0.5);
mScene->getMaterial(0)->setDynamicFriction(0.5);
mScene->getMaterial(0)->setRestitution(0.1);
mRenderSystem = new OGRE3DRenderSystem(mScene);
I receive the error
LINK : fatal error LNK1104: cannot open file 'stlport_statix.lib'
Why is it looking for this lib file? Is STLPORT required to use the OGRE3DRender System?
I am using Ogre 1.6.5 and BloodyMess 1.5.5