libui/windows/compilerver.hpp

17 lines
363 B
C++
Raw Normal View History

// 9 june 2015
// Visual Studio (Microsoft's compilers)
// VS2013 is needed for va_copy().
#ifdef _MSC_VER
#if _MSC_VER < 1800
#error Visual Studio 2013 or higher is required to build libui.
#endif
#endif
// MinGW
#ifdef __MINGW32__
2015-12-09 14:31:14 -06:00
#error At present, MinGW is not supported; see README.md for details.
#endif
// other compilers can be added here as necessary