CGII/framework/include/libs/JPEG/jconfig.h

16 lines
377 B
C
Raw Normal View History

2018-05-17 13:50:03 +00:00
#ifdef WIN32
2018-05-17 14:01:02 +00:00
# ifdef _MSC_VER
# pragma warning (disable:4244)
# pragma warning (disable:4133)
# pragma warning (disable:4996)
# pragma warning (disable:4267)
# include "jconfig.vc"
# else
# include "jconfig.mingw"
# endif
#elif __GNUC__
# include "jconfig.gcc"
2018-05-17 13:50:03 +00:00
#else
2018-05-17 14:01:02 +00:00
# error "libJPEG cannot be configured for the current platform."
2018-05-17 13:50:03 +00:00
#endif