Reputation: 13
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
Reputation: 286
It seems the library name is misspelled. It should be OgreMain_d.lib, not OrgeMain_d.lib.
Upvotes: 1