diff options
author | scuri <scuri> | 2010-06-21 22:55:10 +0000 |
---|---|---|
committer | scuri <scuri> | 2010-06-21 22:55:10 +0000 |
commit | 37a92b86d13e89d0dcec92be6d23ceced29dbc36 (patch) | |
tree | faff61ef668379212b4ed948934533c3f2fe308b /src/ftgl/config.h | |
parent | a124216ee05a5d63ea8fcdafcd050ad1fadf0b09 (diff) |
*** empty log message ***
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 |