[Solved]Adding QWT Library to Qt creator
Page |
1 |
Hi. Can someone explain me how to add the QWT Library to the Qt creator, so tht i can build plotting application like any other normal applications.
Thank you.
23 replies
I m working on linux platform. All I have is the .so files and all the header/class files. How to link it to the Qt creator project.
I dont seem to have an add library option on right clicking my .pro file. Rather, I jus have an option to add some random files(C++ class , Resource file and the QML file).
Is Qmake option similar to “ LIBS += -L/usr/local/lib -lmath” ??
Please help.
I m facing a trouble at the linking phase. I have added a DEPENDPATH to my library file.., the .so file names are as follows..,
libqwt.so
libqwt.so.6
libqwt.so.6.0
libqwt.so.6.0.0
libqwtmathml.so
libqwtmathml.so.6
libqwtmathml.so.6.0
libqwtmathml.so.6.0.0
I tried
LIBS += -llibqwtmathml, which is not working.
I also tried giving the complete path but did not help.
Can u please help me in adding this .,
I m working on linux platform. All I have is the .so files and all the header/class files. How to link it to the Qt creator project.
What Linux are you on and what version? This can be important to know because not all linux boxes use the same way to let the run-time linker known the path to a shared library .
In that case I think i can help you out. I’ve succeeded using QWT in kubuntu 10.10 and had to look at the ubuntu help pages to solve it out. So it should work for you too.
of course you have to adapt the paths.
in shell :
1. Add the ld.so configuration file :
echo “/usr/local/qwt-6.0.0-rc5/lib” | sudo tee /etc/ld.so.conf.d/qwt.conf
2. Update the cache :
sudo ldconfig -v
put this in your pro file :
- #QWT
- QWT_LOCATION = /usr/local/qwt-6.0.0-rc5/
- INCLUDEPATH += $${QWT_LOCATION}/include/
- LIBS = -L$${QWT_LOCATION}/lib \
- -lqwt
If you later decide to “uninstall” the libraries, just remove the conf file and run sudo ldconfig again.
You must log in to post a reply. Not a member yet? Register here!




