Topic: Compilation by MS VS 2008 Express
I've upgraded VisualStudio2005 project to 2008.
1) Error:
>..\..\MSDK\MEngine\Sources\MLevel.cpp(33) : fatal error C1083: Cannot open include file: 'MLog.h': No such file or directory
Change
#include <MLog.h>
to
#include "../Includes/MLog.h"
2) In the project add MLog.h to MEngine/Includes.
3) In the project add MLog.cpp to MEngine/Sources.
After these steps, everything compiled and working.