Compile c++ file using external library from linux

2019-07-23 06:58发布

I have the following files:

ex1.cpp    ex1.h
GLee.cpp   GLee.h

and I want to make it use the library (openmesh library) on the following path:

home/xyz/Downloads/OpenMesh-2.3/src/OpenMesh/

I'm trying to execute it with this:

g++ -Wall -o ex1 ex1.cpp GLee.cpp -L/..path../

but no luck, output is:

In file included from ex1.cpp:17:0: ex1.h:28:38: fatal error: OpenMesh/Core/IO/MeshIO.hh: No such file or directory compilation terminated.

what is the correct way of doing this?

Thanks!

2条回答
三岁会撩人
2楼-- · 2019-07-23 07:25

You need to put -I path on the command line. So from the error, it looks like you would do:

g++ -Wall -o ex1 ex1.cpp GLee.cpp -I /home/xyz/Downloads/OpenMesh-2.3/src
查看更多
Fickle 薄情
3楼-- · 2019-07-23 07:33

I would recommend you and everyone else who has the same problem to read this article I was having the same issue but after reading this I got it fixed, I hope it helps you, http://www.cprogramming.com/tutorial/shared-libraries-linux-gcc.html

查看更多
登录 后发表回答