Merge branch 'MinGW_Fix' into 'master'
Small compilation fix for MINGW64 cross-compilation See merge request OpenMesh/OpenMesh!151
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
<li>enable c++11 features of many classes for Visual Studio 2013</li>
|
||||
<li>Fixed broken version macros (Thanks to Frederik Salomonsson for the fix)</li>
|
||||
<li>Fixed Build on gcc-7.2 (Thanks to Gero Müller and Martial Tola for the patches)</li>
|
||||
<li>Small compilation fix for MINGW64 cross-compilation(Thanks to Manuel Massing for the patch)</li>
|
||||
</ul>
|
||||
|
||||
<b>Tools</b>
|
||||
|
||||
@@ -64,7 +64,7 @@ int getche() { return ::_getche(); }
|
||||
} // AS
|
||||
|
||||
// ----------------------------------------------------------------- Win32 ----
|
||||
#elif defined(WIN32)
|
||||
#elif defined(WIN32) || defined(__MINGW32__)
|
||||
|
||||
#include <conio.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user