开发者

Compiling OpenGL SOIL on Ubuntu

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


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜