D:\Program Files\Microsoft Visual Studio 9.0\VC\include\Layer3\libgfl.h(62) : fatal error C1083: Cannot open include file: 'stdint.h': No such file or directory
Code: Select all
#if defined(WIN32)
#include <basetsd>
typedef INT8 GFL_INT8;
typedef UINT8 GFL_UINT8;
...
#else
#include <stdint> //line 62
typedef int8_t GFL_INT8;
typedef uint8_t GFL_UINT8;
...
#endif
I added WIN32 to preprocessor definitions and it became ok.