Results 1 to 5 of 5

Thread: New to Qt

  1. #1
    Join Date
    Nov 2012
    Posts
    3
    Qt products
    Qt4
    Platforms
    Windows

    Question New to Qt

    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
    Last edited by aashok91; 29th November 2012 at 05:08.

  2. #2
    Join Date
    Sep 2008
    Location
    Bangalore
    Posts
    659
    Thanks
    116
    Thanked 42 Times in 41 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: New to Qt

    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..
    "Behind every great fortune lies a crime" - Balzac

  3. #3
    Join Date
    Nov 2012
    Posts
    3
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: New to Qt

    thanks... but do i need to install it any particular directory? also, would i need to make changes to the .pro file?

  4. #4
    Join Date
    Sep 2008
    Location
    Bangalore
    Posts
    659
    Thanks
    116
    Thanked 42 Times in 41 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: New to Qt

    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
    "Behind every great fortune lies a crime" - Balzac

  5. #5
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: New to Qt

    Quote Originally Posted by wagmare View Post
    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.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.