diff options
Diffstat (limited to 'src/ftgl/config.h')
-rw-r--r-- | src/ftgl/config.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ftgl/config.h b/src/ftgl/config.h new file mode 100644 index 0000000..109a1ae --- /dev/null +++ b/src/ftgl/config.h @@ -0,0 +1,10 @@ +// GLUT +//#define HAVE_GL_GLUT_H + +// M_PI and friends on VC +#define _USE_MATH_DEFINES + +// quell spurious "'this': used in base member initializer list" warnings +#ifdef _MSC_VER +#pragma warning(disable: 4355) +#endif |