在 Ubuntu 上编译 OpenGL SOIL
如何在 Ubuntu 中将 SOIL 链接到 OpenGL?
编辑:
我解决了这个问题,我的教授在终端中显示了locate cmd 我能够找到我必须从哪里获取 .h 。
如果其他人对我来说有这个问题,那
#include "SOIL/SOIL.h"
就是在编译时链接 -lSOIL
How do I link SOIL for a OpenGL in Ubuntu?
EDIT:
I figured out the issue, my professor showed the locate cmd in the terminal
and I was able to find where I had to get the .h from.
If anyone else has this issue for me it was,
#include "SOIL/SOIL.h"
and to link -lSOIL when compiling
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先从其网站下载SOIL.h头文件
http://www.lonesock.net/soil.html< /a>
将头文件放入项目目录中,并将该行放入
项目文件中。
之后你必须安装土壤库才能使用-lSOIL。要安装该库,请使用命令
现在使用 gcc 和 -lSOIL 编译项目
First download the SOIL.h header file from its website
http://www.lonesock.net/soil.html
Place the header file in your project directory and put the line
in your project file.
After that you have to install the soil library to use -lSOIL. To install the library use the command
Now compile the project using gcc along with -lSOIL