在 Ubuntu 上编译 OpenGL SOIL

发布于 2024-11-02 14:53:51 字数 205 浏览 3 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑脸一如从前 2024-11-09 14:53:51

首先从其网站下载SOIL.h头文件

http://www.lonesock.net/soil.html< /a>

将头文件放入项目目录中,并将该行放入

#include "SOIL.h" 

项目文件中。
之后你必须安装土壤库才能使用-lSOIL。要安装该库,请使用命令

 sudo apt-get install libsoil-dev

现在使用 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

#include "SOIL.h" 

in your project file.
After that you have to install the soil library to use -lSOIL. To install the library use the command

 sudo apt-get install libsoil-dev

Now compile the project using gcc along with -lSOIL

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文