On Wednesday 23 December 2009 00:11:18 ext Chasc wrote:
> I have generated a shared library (.so file) and am trying to run an app
> I have developed in Qt-creator using the library but so far without
> success. Can anybody help me with this or perhaps direct me to the
> relevant documentation? My platform is linux.
If I understand you correctly, you want to make your library be linked to your
application? In that case, add the following to your project (.pro) file:
LIBS += -L<path-to-lib> -l<lib-name>
(This is what it looks like for UNIX-like systems; other platforms have
different syntax, but also use the LIBS variable.)
Christian
_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-creator