OK, so I have been following this tutorial.
I set up everything as told (double checked everything), only thing I changed is (step 10), from
${OGRE_HOME}\boost_1_44
to
${OGRE_HOME}\boost
since in my Ogre SDK version (1.81), there is no boost_1_44 folder, only boost folder.
Anyhow, as I said, when I try to compile my program, I get this three errors :
undefined reference to boost::system::generic_category()
undefined reference to boost::system::generic_category()
undefined reference to boost::system::system_category()
I have tried adding this : -lboost_system to my Project. I went to Properties > C/C++ Build > Settings > GCC C++ Compiler > Miscellaneous and added it to the existing flags, but no luck.
I googled, and apparently that is the only solution possible. So, I ask you, if someone could explain me (as simple as possible please, step by step) how to fix this compiler errors.
EDIT : I'm using MinGW as a compiler (I use it with MSYS).