For example, if you want to link to a library "/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so", you should do:
So if you are looking for a library named "gthread-2.0" try to search for a file "libgthread-2.0.so" etc...Qt Code:
LIBS += -lgstreamer-1.0 LIBS += -L/usr/lib/x86_64-linux-gnu/To copy to clipboard, switch view to plain text mode
There are many resources about using shared libraries, for example this one
Try to do some research if you are not sure what those "-L , -I, -l, ..." really mean.
Bookmarks