我正在尝试在Xcode中运行一个openGL程序,但是在以下代码的一行中出现错误:
#ifdef __MAC__
# include <GLUT/glut.h>
#else
# include <GL/glut.h> // in this line, I am getting the error that the file is not found
#endif
我添加了GLUT框架和openGL框架 - 不确定这是否相关。)
答案 0 :(得分:4)
如果我得到那个错误。我会写下这个错误。 这种方式只适用于OSX。
#ifndef __MAC__
#define __MAC__ 1
#endif
#ifdef __MAC__
# include <GLUT/glut.h>
#else
# include <GL/glut.h> // in this line, I am getting the error that the file is not found
#endif
答案 1 :(得分:0)
在所有平台上使用<GLUT/glut.h>
代替<GL/glut.h>
。
前者已在最新更新中弃用,您可能会收到警告。