尝试在 NetBeans 6.9.1 中包含 .h 库
我的 C++ 项目的 Main.cpp 文件中有如下一行。
include<GL/glut.h>
当我尝试编译该项目时,它说:
GL/glut.h:没有这样的文件或目录。
我尝试包含的文件的路径是 root_project/include/GL/glut.h。
我应该怎么办?
问候, 哈维
I have a line like this below in the Main.cpp file in my C++ project.
include<GL/glut.h>
When I try to compile the project, it says:
GL/glut.h: No such file or directory.
The path of the file I'm trying to include is root_project/include/GL/glut.h.
What should I do?
Regards,
Javi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该确保在netbeans的项目设置中,“includedirectories”包含包含文件夹“GL”的目录的路径
you should make sure that in the project settings of netbeans, 'include directories' includes the path of the directory which contains the folder "GL"