1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-07 08:20:18 +00:00
QB64-PE/internal/c/parts/core/src.c
2013-01-24 23:57:23 +11:00

14 lines
315 B
C

#ifdef QB64_MACOSX
//note: MacOSX uses Apple's GLUT not FreeGLUT
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#include <OpenGL/glext.h>
#include <GLUT/glut.h>
#else
#define CORE_FREEGLUT
#ifdef QB64_BACKSLASH_FILESYSTEM
#include "src\\freeglut.h"
#else
#include "src/freeglut.h"
#endif
#endif