Browse Source

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

Russ Taylor 10 năm trước cách đây
mục cha
commit
386ff96530
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  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>