PDA

View Full Version : New to Qt



aashok91
29th November 2012, 05:01
Hi everyone

I am new to Qt. I using it to build an application that involves a few graph plots. When I searched this in the forums, lots of people seem to have used Qwt for this purpose. How do I install and use Qwt with Qt creator?

Thanks

wagmare
29th November 2012, 05:58
use http://sourceforge.net/projects/qwt/
also http://qwt.sourceforge.net/

include the libs and include files of qwt in ur qt project and start working in qtcreator.. :)

aashok91
29th November 2012, 07:53
thanks... but do i need to install it any particular directory? also, would i need to make changes to the .pro file?

wagmare
29th November 2012, 09:48
u need to include libs and include of QWT in your .pro file

LIBS += QWT PATH/
ex: win32:LIBS += c:/mylibs/math.lib

INCLUDEPATH = QWT PATH
ex: INCLUDEPATH = c:/msdev/include d:/stl/include

wysota
29th November 2012, 09:53
u need to include libs and include of QWT in your .pro file

LIBS += QWT PATH/
ex: win32:LIBS += c:/mylibs/math.lib

INCLUDEPATH = QWT PATH
ex: INCLUDEPATH = c:/msdev/include d:/stl/include

No, you don't. It's enough to add a "CONFIG += qwt" entry to your project file.