The problem with VS2013 project in VS2013 arisen, apparently due to the fact that the studio is looking for the first line of #include "stdafx.h" in files like *.cpp , and I need to include another header due to the requirements for cross-platform.
#ifdef WIN32 #include "stdafx.h" #endif #ifdef __linux__ #include "stdinclude.h" #endif Is there any way around this problem?
PS at assembly, in each *.cpp file flashes an error:
ХХХХ.cpp(3): fatal error C1020: unexpected #endif 