Following this post http://code.opencv.org/issues/4087, we must to change in file window_w32.cpp by inserting these in code:
#ifdef __GNUC__
# pragma GCC diagnostic ignored "-Wmissing-declarations"
#endif
//Insert here
#if (_WIN32_IE < 0x0500)
#pragma message("WARNING: Win32 UI needs to be compiled with _WIN32_IE >= 0x0500 (_WIN32_IE_IE50)")
#define _WIN32_IE 0x0500
#endif
//End inserting
Then run mingw32-make again.
0 comments :
Post a Comment