1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-16 14:23:58 +00:00
QB64-PE/internal/c/parts/core/src.c

15 lines
315 B
C
Raw Normal View History

2013-01-24 12:57:23 +00:00
#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