Преглед изворни кода

Knows where to look for glut.h on Mac with Clang compilers (command-line compilers under current XCode).

Russ Taylor пре 10 година
родитељ
комит
386ff96530
1 измењених фајлова са 4 додато и 0 уклоњено
  1. 4 0
      samples/SimpleOpenGL/Sample_SimpleOpenGL.c

+ 4 - 0
samples/SimpleOpenGL/Sample_SimpleOpenGL.c

@@ -14,7 +14,11 @@
 #include <stdlib.h>
 #include <stdio.h>
 
+#ifdef __APPLE__
+#include <glut.h>
+#else
 #include <GL/glut.h>
+#endif
 
 /* assimp include files. These three are usually needed. */
 #include <assimp/cimport.h>