我在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
,但问题仍未解决。
答案 0 :(得分:-1)
你应该这样包括:
#include <glew.h>