Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Installing QWT library for QT creator
Forum Updated to NodeBB v4.3 + New Features

Installing QWT library for QT creator

Scheduled Pinned Locked Moved Installation and Deployment
3 Posts 3 Posters 2.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    bloodviper9000
    wrote on 5 Aug 2014, 13:07 last edited by
    #1

    I m using Linux operating system.I installed Qt Creator. I would like to use Qwt library. I downloaded qwt-6.1.0.tar.bz2 and unzipped to the desktop folder.

    I performed the following instruction for installation:

    ./configure
    But I could not install,So I googled Installing Qwt and found sourceforge website for installation. But I could not configure or understand how to install it.Can any one provide me with a step by step install of the QWT

    1 Reply Last reply
    0
    • V Offline
      V Offline
      vezprog
      wrote on 5 Aug 2014, 19:39 last edited by
      #2

      Open up the .pro that comes with the library package and compile using QtCreator. Once the compile finishes, it should output libraries into the libs directory.

      add the following to your .pro in your project:
      @

      source include directory

      INCLUDEPATH += pathtoqwt/src

      destination directories

      CONFIG(debug, debug|release) {
      LIBS += -Lpathtoqwt/lib -lqwtd
      }
      CONFIG(release, debug|release) {
      LIBS += -Lpathtoqwt/lib -lqwt
      }
      @

      1 Reply Last reply
      0
      • S Offline
        S Offline
        SGaist
        Lifetime Qt Champion
        wrote on 5 Aug 2014, 19:47 last edited by
        #3

        Hi and welcome to devnet,

        There's no configure for Qwt, just use the qmake from your Qt installation then call make and make install.

        It's all explained "here":http://qwt.sourceforge.net/qwtinstall.html

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply
        0

        1/3

        5 Aug 2014, 13:07

        • Login

        • Login or register to search.
        1 out of 3
        • First post
          1/3
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved