Hello. I´m beginner with Ogre and momentally I´m making my first application. But I don´t know how I get a screen of Ogre 3D Setup dialog.
I wrote code in Visual Studio, set working directory, BUT how I execute it?
It´s really simple:
// This is the main DLL file.
Example1 app;
app.go();
There are several steps in the tutorial you linked to that you didn't do correctly. Your Example1 class isn't inheriting from ExampleApplication, you haven't included ExampleApplication.h and the Example1 app; and app.go(); lines belong inside of the main function, not at the top of the file.
Directories and lib files can't be used with #include.