brew install glew没有解决我的<gl glew.h =“”>依赖问题

时间:2015-08-13 15:45:03

标签: c++ glew

我在Macintosh上使用终端。

要编译的命令是基本的:

g++ -c  String.cpp -o String.o
g++ -c  FileIO.cpp -o FileIO.o
g++ -c  AffineTransforms.cpp -o AffineTransforms.o
g++ -c  Node.cpp -o Node.o
g++ -c  Vertex.cpp -o Vertex.o
g++ -c  BasicObject.cpp -o BasicObject.o
g++ -c  Picture.cpp -o Picture.o
g++ -c  Window.cpp -o Window.o
Window.cpp:1:10: fatal error: 'GL/glew.h' file not found
#include <GL/glew.h>
         ^
1 error generated.

我按照建议使用brew install glew,但问题仍未解决。

1 个答案:

答案 0 :(得分:-1)

你应该这样包括:

#include <glew.h>