user1746302
user1746302

Reputation: 13

LINK : fatal error LNK1104: cannot open file 'OrgeMain_d.lib. Trying to set up an ogre3d app

I've searched around and can't find anything that relates to my problem.

#include "Ogre\ExampleApplication.h"

class Example1 : public ExampleApplication
{
public:
    void createScene()
    {
    }
};

int main(void)
{
    Example1 app;
    app.go();

    return 0;
}

Steps I've taken:

I've also tried it the way the Ogre site teaches you. But I get the same errors. Using Visual Studio 2010.

Upvotes: 0

Views: 997

Answers (1)

Alican
Alican

Reputation: 286

It seems the library name is misspelled. It should be OgreMain_d.lib, not OrgeMain_d.lib.

Upvotes: 1

Related Questions